diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-08-30 01:04:54 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-08-30 01:04:54 +0800 |
commit | e02a9171c4acc0d0884c32ad6b9119663b0d9bf2 (patch) | |
tree | 89bf6a1f87bbe1faa95969a9ddf9f3776ddf5b12 /camel/providers/smtp | |
parent | 5fadb311e670e53e35c8cfd637c70d57ed497fb1 (diff) | |
download | gsoc2013-evolution-e02a9171c4acc0d0884c32ad6b9119663b0d9bf2.tar.gz gsoc2013-evolution-e02a9171c4acc0d0884c32ad6b9119663b0d9bf2.tar.zst gsoc2013-evolution-e02a9171c4acc0d0884c32ad6b9119663b0d9bf2.zip |
Updated to check for EXPUNGE notifications
2000-08-29 Jeffrey Stedfast <fejj@helixcode.com>
* providers/imap/camel-imap-store.c (camel_imap_command_extended):
Updated to check for EXPUNGE notifications
* providers/imap/camel-imap-folder.c (camel_imap_folder_changed):
Updated to account for messages which have been expunged (now
takes a new arg, a GPtrArray of message id's that have been
expunged)
(imap_expunge): Updated (we may want to just use the code in
folder_changed now instead of doing our own summary
expunging...but that can be fixed later)
(imap_append_message): Updated.
(imap_copy_message_to): Updated.
(imap_move_message_to): Updated.
svn path=/trunk/; revision=5098
Diffstat (limited to 'camel/providers/smtp')
-rw-r--r-- | camel/providers/smtp/camel-smtp-transport.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/smtp/camel-smtp-transport.c b/camel/providers/smtp/camel-smtp-transport.c index 19668a30fa..ea3a60ab9e 100644 --- a/camel/providers/smtp/camel-smtp-transport.c +++ b/camel/providers/smtp/camel-smtp-transport.c @@ -207,11 +207,11 @@ smtp_connect (CamelService *service, CamelException *ex) /* not really supported yet, but we can at least show what auth types are supported */ d(fprintf (stderr, "camel-smtp-transport::connect(): %s requires AUTH\n", service->url->host)); num = g_list_length (transport->esmtp_supported_authtypes); - + for (i = 0; i < num; i++) d(fprintf (stderr, "\nSupported AUTH: %s\n\n", (gchar *) g_list_nth_data (transport->esmtp_supported_authtypes, i))); - + g_list_free (transport->esmtp_supported_authtypes); transport->esmtp_supported_authtypes = NULL; } else { |