aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-09-08 04:39:11 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-09-08 04:39:11 +0800
commitc8b89a700bd419f235c3e93041ed4eb638c2a2e3 (patch)
tree698aba883c7bbb81504266395ff4786cdccb58a5 /mail/mail-ops.c
parent58eb7bf31c146cb0fcf3a08062d9920f92c04674 (diff)
downloadgsoc2013-evolution-c8b89a700bd419f235c3e93041ed4eb638c2a2e3.tar
gsoc2013-evolution-c8b89a700bd419f235c3e93041ed4eb638c2a2e3.tar.gz
gsoc2013-evolution-c8b89a700bd419f235c3e93041ed4eb638c2a2e3.tar.bz2
gsoc2013-evolution-c8b89a700bd419f235c3e93041ed4eb638c2a2e3.tar.lz
gsoc2013-evolution-c8b89a700bd419f235c3e93041ed4eb638c2a2e3.tar.xz
gsoc2013-evolution-c8b89a700bd419f235c3e93041ed4eb638c2a2e3.tar.zst
gsoc2013-evolution-c8b89a700bd419f235c3e93041ed4eb638c2a2e3.zip
Updated to pass an exception to filter_driver_run and also check the
2000-09-07 Jeffrey Stedfast <fejj@helixcode.com> * mail-ops.c (do_fetch_mail): Updated to pass an exception to filter_driver_run and also check the exception before deleting the message from the source folder. (do_filter_ondemand): Updated to pass an exception to filter_driver_run svn path=/trunk/; revision=5242
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 1bec67ebbf..0042a21872 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -166,11 +166,12 @@ do_fetch_mail (gpointer in_data, gpointer op_data, CamelException *ex)
message = camel_folder_get_message (folder, uids->pdata[i], ex);
fprintf (stderr, "about to run the filter\n");
filter_driver_run (filter, message, input->destination,
- FILTER_SOURCE_INCOMING, TRUE,
- input->hook_func, input->hook_data);
+ FILTER_SOURCE_INCOMING,
+ input->hook_func, input->hook_data,
+ TRUE, ex);
mail_tool_camel_lock_down ();
- if (!input->keep_on_server) {
+ if (!input->keep_on_server && !camel_exception_is_set (ex)) {
guint32 flags;
flags = camel_folder_get_message_flags (folder, uids->pdata[i]);
@@ -180,6 +181,7 @@ do_fetch_mail (gpointer in_data, gpointer op_data, CamelException *ex)
}
camel_object_unref (CAMEL_OBJECT (message));
}
+ camel_folder_sync (folder, ex);
camel_folder_free_uids (folder, uids);
data->empty = FALSE;
@@ -324,7 +326,9 @@ do_filter_ondemand (gpointer in_data, gpointer op_data, CamelException *ex)
message = camel_folder_get_message (input->source, uids->pdata[i], ex);
filter_driver_run (input->driver, message, input->destination,
- FILTER_SOURCE_DEMAND, TRUE, NULL, NULL);
+ FILTER_SOURCE_DEMAND, NULL, NULL, TRUE, ex);
+
+ /* FIXME: should we delete the message from the source mailbox? */
camel_object_unref (CAMEL_OBJECT (message));
g_free (uids->pdata[i]);