Changeset 3731

Show
Ignore:
Timestamp:
07/31/08 19:03:01
Author:
jdapena
Message:

* libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-store.c:

Check on fetching folder info if the top folder is inbox (should fix
inbox detection in dovecot).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r3730 r3731  
     12008-07-31  Jose Dapena Paz  <jdapena@igalia.com> 
     2 
     3        * libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-store.c: 
     4        Check on fetching folder info if the top folder is inbox (should fix 
     5        inbox detection in dovecot). 
     6 
    172008-07-28  Jürg Billeter  <j@bitron.ch> 
    28 
  • trunk/libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-store.c

    r3725 r3731  
    41634163 
    41644164        fi = camel_folder_info_build (folders, top, '/', TRUE); 
     4165        /* for the case the inbox itself has been synthesized here (hack for dovecot) */ 
     4166        if (!g_ascii_strcasecmp(fi->full_name, "inbox")) 
     4167                fi->flags = (fi->flags & ~CAMEL_FOLDER_TYPE_MASK) | CAMEL_FOLDER_TYPE_INBOX; 
    41654168        g_ptr_array_free (folders, TRUE); 
    41664169        g_free(name);