~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-updates

« back to all changes in this revision

Viewing changes to camel/providers/nntp/camel-nntp-summary.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-07-27 16:04:20 UTC
  • mfrom: (1.1.70 upstream)
  • Revision ID: james.westby@ubuntu.com-20090727160420-dr27rzbz6ddjqo04
Tags: 2.27.5-0ubuntu1
* New upstream version: 
  Bug Fixes:
  Address Book:
  - #587558 - Removing a picture of a contact in an LDAP addressbook
              crashes evolution 
  - #589325 - Evolution Contacts reports ambiguous error on Google
              Contacts authentication failure with bad password 
  Calendar:
  - #572176 - Allow local iCal files to be selected as calendar source
  - #586342 - CalDAV backend does not support attachments 
  - #588857 - CalDAV for Google calendars should allow email notifications
  Mail:
  - #524219 (bnc) - Unable to read forward groupwise mails in other clients.
  - #588220 - Evolution crashed when starting with local account configured 
  - #588573 - NULL string comparison in camel-search-sql-sexp.c
  Miscellaneous:
  - #583374 - The broken Google calendar import should be replaced by
              the working CalDAV support 
  - #588277 - Unnecessary special-purpose configure flag 
  Other Fixes:
  Handle quota error messages. 
  Return the proper timezone to get the counts right in all timezones.
  CamelVeeFolder - pass exceptions to functions instead of NULL
  Migrate caldav, groupwise, http, weather backends to ECalBackendStore.   
  Translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
304
304
                                line += xover->skip;
305
305
                                if (line < tab) {
306
306
                                        camel_header_raw_append(&headers, xover->name, line, -1);
307
 
                                        switch(xover->type) {
 
307
                                        switch (xover->type) {
308
308
                                        case XOVER_STRING:
309
309
                                                break;
310
310
                                        case XOVER_MSGID:
390
390
                        g_warning("retrieved message '%u' when i expected '%u'?\n", n, i);
391
391
 
392
392
                /* FIXME: use camel-mime-utils.c function for parsing msgid? */
393
 
                if ((msgid = strchr(line, '<')) && (line = strchr(msgid+1, '>'))){
 
393
                if ((msgid = strchr(line, '<')) && (line = strchr(msgid+1, '>'))) {
394
394
                        line[1] = 0;
395
395
                        cns->priv->uid = g_strdup_printf("%u,%s\n", n, msgid);
396
396
                        if (!GPOINTER_TO_INT(g_hash_table_lookup (summary_table, cns->priv->uid))) {