aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-11-01 02:33:37 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-11-01 02:33:37 +0800
commit3d5a9588f6ab1adbc028b31353cc37843e1cea5a (patch)
treed8f29e6551307b65dee6cde37a3caa0af3c2e50b
parentc079bfa687b82f795458e05f59bed9129ffa0578 (diff)
downloadgsoc2013-evolution-3d5a9588f6ab1adbc028b31353cc37843e1cea5a.tar
gsoc2013-evolution-3d5a9588f6ab1adbc028b31353cc37843e1cea5a.tar.gz
gsoc2013-evolution-3d5a9588f6ab1adbc028b31353cc37843e1cea5a.tar.bz2
gsoc2013-evolution-3d5a9588f6ab1adbc028b31353cc37843e1cea5a.tar.lz
gsoc2013-evolution-3d5a9588f6ab1adbc028b31353cc37843e1cea5a.tar.xz
gsoc2013-evolution-3d5a9588f6ab1adbc028b31353cc37843e1cea5a.tar.zst
gsoc2013-evolution-3d5a9588f6ab1adbc028b31353cc37843e1cea5a.zip
Match "is" rather than "contains" now that we have the "is"-rule.
2000-10-31 Jeffrey Stedfast <fejj@helixcode.com> * mail-autofilter.c (filter_gui_add_for_mailing_list): Match "is" rather than "contains" now that we have the "is"-rule. svn path=/trunk/; revision=6295
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-autofilter.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index d92c9a4bb7..59d789f461 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-31 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * mail-autofilter.c (filter_gui_add_for_mailing_list): Match "is"
+ rather than "contains" now that we have the "is"-rule.
+
2000-10-30 Dan Winship <danw@helixcode.com>
* mail-config-gui.c (config_do_query_authtypes): Redo this so that
diff --git a/mail/mail-autofilter.c b/mail/mail-autofilter.c
index 22b506d683..fad586274c 100644
--- a/mail/mail-autofilter.c
+++ b/mail/mail-autofilter.c
@@ -324,7 +324,7 @@ filter_gui_add_for_mailing_list (CamelMimeMessage *msg,
filter_input_set_value((FilterInput *)element, header_name);
element = filter_part_find_element(part, "header-type");
- filter_option_set_current((FilterOption *)element, "contains");
+ filter_option_set_current((FilterOption *)element, "is");
element = filter_part_find_element(part, "word");
filter_input_set_value((FilterInput *)element, header_value);