diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-06-21 01:34:18 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-06-21 01:34:18 +0800 |
commit | 98928d96630b95565e62cab807b19f5fdc96e41d (patch) | |
tree | e861b86b631e35002069b65753fc6009781a4823 /camel/providers/imap/camel-imap-folder.c | |
parent | 8a77b2dfd8f25ef9c5a5b7a3a5231a65633599e0 (diff) | |
download | gsoc2013-evolution-98928d96630b95565e62cab807b19f5fdc96e41d.tar gsoc2013-evolution-98928d96630b95565e62cab807b19f5fdc96e41d.tar.gz gsoc2013-evolution-98928d96630b95565e62cab807b19f5fdc96e41d.tar.bz2 gsoc2013-evolution-98928d96630b95565e62cab807b19f5fdc96e41d.tar.lz gsoc2013-evolution-98928d96630b95565e62cab807b19f5fdc96e41d.tar.xz gsoc2013-evolution-98928d96630b95565e62cab807b19f5fdc96e41d.tar.zst gsoc2013-evolution-98928d96630b95565e62cab807b19f5fdc96e41d.zip |
Now returns the last line of data that the server sends back as well. This
2000-06-20 Jeffrey Stedfast <fejj@helixcode.com>
* providers/imap/camel-imap-store.c (camel_imap_command_extended):
Now returns the last line of data that the server sends back as
well. This is needed for commands like SELECT (like Peter pointed
out).
(camel_imap_command): No longer checks for SELECT (no need)
* providers/imap/camel-imap-folder.c: Added namespace stuff
which we will need later on...
(imap_parse_subfolder_line): Convenience function for use in
get_subfolder_names()
(imap_get_subfolder_names): Updated. Also changed it to use LIST
instead of LSUB (temporary change).
svn path=/trunk/; revision=3646
Diffstat (limited to 'camel/providers/imap/camel-imap-folder.c')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 729a620820..0d67c2fa7f 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -282,6 +282,8 @@ imap_init (CamelFolder *folder, CamelStore *parent_store, CamelFolder *parent_fo folder->full_name, service->url->host, status == CAMEL_IMAP_ERR ? result : "Unknown error"); + } else { + /* parse the mode we opened it in */ } g_free (result); } |