From 2a7ffa8cf1bf8747267f06fab9387ad48fb29a1f Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 11 Aug 2000 15:44:33 +0000 Subject: Remove an '#if 0' that must have been left in accidentally, so that * filter-driver.c (do_filter_mail): Remove an '#if 0' that must have been left in accidentally, so that messages which are copied to other folders will not also be copied into the Inbox. Also, #ifdef out the line that printfs the rule, because the rules are often very large. svn path=/trunk/; revision=4735 --- filter/filter-driver.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'filter/filter-driver.c') diff --git a/filter/filter-driver.c b/filter/filter-driver.c index 78145f5086..b86cdf0f04 100644 --- a/filter/filter-driver.c +++ b/filter/filter-driver.c @@ -508,7 +508,9 @@ do_filter_mail (gpointer in_data, gpointer op_data, CamelException *ex) filter_rule_build_code((FilterRule *)rule, s); filter_filter_build_action(rule, a); +#if 0 printf("applying rule %s\n action %s\n", s->str, a->str); +#endif mail_tool_camel_lock_up (); p->matches = camel_folder_search_by_expression (p->source, s->str, p->ex); @@ -518,12 +520,11 @@ do_filter_mail (gpointer in_data, gpointer op_data, CamelException *ex) for (i = 0; i < p->matches->len; i++) { uid = p->matches->pdata[i]; -#if 0 /* for all matching id's, so we can work out what to default */ if (g_hash_table_lookup (p->processed, uid) == NULL) { g_hash_table_insert (p->processed, uid, GINT_TO_POINTER (1)); } -#endif + if (g_hash_table_lookup (p->terminated, uid)) { g_ptr_array_remove_index_fast (p->matches, i); i--; -- cgit v1.2.3