From e02a9171c4acc0d0884c32ad6b9119663b0d9bf2 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 29 Aug 2000 17:04:54 +0000 Subject: Updated to check for EXPUNGE notifications 2000-08-29 Jeffrey Stedfast * 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 --- camel/providers/imap/camel-imap-folder.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'camel/providers/imap/camel-imap-folder.h') diff --git a/camel/providers/imap/camel-imap-folder.h b/camel/providers/imap/camel-imap-folder.h index bd1647c300..4df50ed027 100644 --- a/camel/providers/imap/camel-imap-folder.h +++ b/camel/providers/imap/camel-imap-folder.h @@ -65,7 +65,8 @@ typedef struct { CamelFolder *camel_imap_folder_new (CamelStore *parent, char *folder_name, CamelException *ex); -void camel_imap_folder_changed (CamelFolder *folder, gint recent, CamelException *ex); +void camel_imap_folder_changed (CamelFolder *folder, gint recent, GPtrArray *expunged, + CamelException *ex); /* Standard Camel function */ CamelType camel_imap_folder_get_type (void); -- cgit