diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-06-10 02:58:57 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-06-10 02:58:57 +0800 |
commit | 59d329b5b090175e2ea5ffd06cb20dfcd41a7688 (patch) | |
tree | fe94beab713bf7998a0adc4fd735c6506e2ccbb6 /camel/providers/imap | |
parent | 9e8db9cf29fc2a30575c3e1181d535330902cb69 (diff) | |
download | gsoc2013-evolution-59d329b5b090175e2ea5ffd06cb20dfcd41a7688.tar gsoc2013-evolution-59d329b5b090175e2ea5ffd06cb20dfcd41a7688.tar.gz gsoc2013-evolution-59d329b5b090175e2ea5ffd06cb20dfcd41a7688.tar.bz2 gsoc2013-evolution-59d329b5b090175e2ea5ffd06cb20dfcd41a7688.tar.lz gsoc2013-evolution-59d329b5b090175e2ea5ffd06cb20dfcd41a7688.tar.xz gsoc2013-evolution-59d329b5b090175e2ea5ffd06cb20dfcd41a7688.tar.zst gsoc2013-evolution-59d329b5b090175e2ea5ffd06cb20dfcd41a7688.zip |
Will now always send EHLO first, if that fails it will fall back on HELO.
2000-06-09 Jeffrey Stedfast <fejj@helixcode.com>
* providers/smtp/camel-smtp-transport.c (smtp_connect): Will now always
send EHLO first, if that fails it will fall back on HELO.
(esmtp_get_authtypes): Should now correctly parse authtypes.
svn path=/trunk/; revision=3490
Diffstat (limited to 'camel/providers/imap')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index b1e6fc9011..3e60478783 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -635,7 +635,20 @@ message_changed (CamelMimeMessage *m, int type, CamelImapFolder *mf) static CamelMimeMessage * imap_get_message_by_uid (CamelFolder *folder, const gchar *uid, CamelException *ex) { - /* NOTE: extremely easy to do in IMAP - just needa code it ;-) */ + CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder); + CamelImapStore *store = CAMEL_IMAP_STORE (folder->parent_store); + CamelImapStream *imap_stream; + CamelMimeMessage *message; + gchar *cmdid, *cmdbuf; + + +} + +#if 0 +static CamelMimeMessage * +imap_get_message_by_uid (CamelFolder *folder, const gchar *uid, CamelException *ex) +{ + /* NOTE: oh boy, this is gonna be complicated */ CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder); CamelStreamMem *message_stream = NULL; CamelMimeMessage *message = NULL; @@ -726,6 +739,7 @@ imap_get_message_by_uid (CamelFolder *folder, const gchar *uid, CamelException * return NULL; } +#endif GPtrArray * imap_get_summary (CamelFolder *folder, CamelException *ex) |