diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-09-10 01:45:52 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-09-10 01:45:52 +0800 |
commit | e4734ab855711abc1952c36969c3c618e734c294 (patch) | |
tree | a47d1bd2f448984d68a788b27e58ca257d9decf1 /mail/mail-ops.c | |
parent | 30d436a9ec56c26b13b76cfad3ad8017ae428216 (diff) | |
download | gsoc2013-evolution-e4734ab855711abc1952c36969c3c618e734c294.tar gsoc2013-evolution-e4734ab855711abc1952c36969c3c618e734c294.tar.gz gsoc2013-evolution-e4734ab855711abc1952c36969c3c618e734c294.tar.bz2 gsoc2013-evolution-e4734ab855711abc1952c36969c3c618e734c294.tar.lz gsoc2013-evolution-e4734ab855711abc1952c36969c3c618e734c294.tar.xz gsoc2013-evolution-e4734ab855711abc1952c36969c3c618e734c294.tar.zst gsoc2013-evolution-e4734ab855711abc1952c36969c3c618e734c294.zip |
Updated to not send hook/unhook data to filter_driver_run as it no longer
2000-09-09 Jeffrey Stedfast <fejj@helixcode.com>
* mail-ops.c (do_fetch_mail): Updated to not send hook/unhook data
to filter_driver_run as it no longer takes those args.
(do_filter_ondemand): Same. Also wrap filtering in freeze/thaw to
prevent signals from being queued up
svn path=/trunk/; revision=5288
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 0335910259..271fc578bb 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -180,7 +180,6 @@ do_fetch_mail (gpointer in_data, gpointer op_data, CamelException *ex) filter_driver_run (filter, message, info, input->destination, FILTER_SOURCE_INCOMING, - input->hook_func, input->hook_data, TRUE, ex); if (free_info) @@ -347,6 +346,9 @@ do_filter_ondemand (gpointer in_data, gpointer op_data, CamelException *ex) int i; uids = camel_folder_get_uids (input->source); + + camel_folder_freeze (input->source); + for (i = 0; i < uids->len; i++) { CamelMimeMessage *message; CamelMessageInfo *info; @@ -366,7 +368,7 @@ do_filter_ondemand (gpointer in_data, gpointer op_data, CamelException *ex) } filtered = filter_driver_run (input->driver, message, info, NULL, - FILTER_SOURCE_DEMAND, NULL, NULL, TRUE, ex); + FILTER_SOURCE_DEMAND, TRUE, ex); if (free_info) camel_message_info_free (info); @@ -385,6 +387,9 @@ do_filter_ondemand (gpointer in_data, gpointer op_data, CamelException *ex) } camel_folder_sync (input->source, TRUE, ex); + + camel_folder_thaw (input->source); + camel_folder_free_uids (input->source, uids); data->empty = FALSE; |