Handle Courier imap's LSUB response for INBOX when its not subscribed. Fix
authorShreyas Srinivasan <sshreyas@novell.com>
Fri, 21 Oct 2005 07:09:11 +0000 (07:09 +0000)
committerShreyas Srinivasan <shres@src.gnome.org>
Fri, 21 Oct 2005 07:09:11 +0000 (07:09 +0000)
2005-10-21 Shreyas Srinivasan <sshreyas@novell.com>

* camel-imap-utils.c:(imap_parse_list_response): Handle
Courier imap's LSUB response for INBOX when its not subscribed.
Fix #228929.

camel/providers/imap/ChangeLog
camel/providers/imap/camel-imap-utils.c

index eb0d558..eec30e7 100644 (file)
@@ -1,3 +1,9 @@
+2005-10-21 Shreyas Srinivasan <sshreyas@novell.com>
+
+       * camel-imap-utils.c:(imap_parse_list_response): Handle
+       Courier imap's LSUB response for INBOX when its not subscribed.
+       Fix #228929.
+       
 2005-10-21 Vivek Jain <jvivek@novell.com>
        
        Committed NotZed's patch on #314833
index 50f9be3..df2417f 100644 (file)
@@ -380,7 +380,7 @@ imap_parse_list_response (CamelImapStore *store, const char *buf, int *flags, ch
                        return FALSE;
 
                *folder = astring;
-#if 0
+
                char *mailbox;
 
                mailbox = imap_mailbox_decode (astring, strlen (astring));
@@ -404,7 +404,7 @@ imap_parse_list_response (CamelImapStore *store, const char *buf, int *flags, ch
                        *flags &= ~CAMEL_FOLDER_NOSELECT;
                
                *folder = mailbox;
-#endif
+
        }
        
        return TRUE;