diff options
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index bed9e12de9..80d6cdb807 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2000-11-02 Jeffrey Stedfast <fejj@helixcode.com> + + * providers/imap/camel-imap-store.c (get_folder_info): Quote + foldernames when sending to the IMAP server because the folder + name might contain spaces. + 2000-11-02 Not Zed <NotZed@HelixCode.com> * Merged in camel-incremental-branch. diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index c42024bd5f..904bd6bc37 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -701,7 +701,7 @@ get_folder_info (CamelStore *store, const char *top, gboolean fast, response = camel_imap_command ( imap_store, NULL, NULL, - "STATUS %s (MESSAGES UNSEEN)", + "STATUS \"%s\" (MESSAGES UNSEEN)", fi->full_name); if (!response) continue; |