diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-08-08 03:30:17 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-08-08 03:30:17 +0800 |
commit | 299f6f642e8cda990b50ade6a43c702905d0c59d (patch) | |
tree | 5b189b9f732c8d8fac0c0e34a8fbb87f8622f282 | |
parent | 233aa53aefe06bb717f2e5d93107e9408172d464 (diff) | |
download | gsoc2013-evolution-299f6f642e8cda990b50ade6a43c702905d0c59d.tar.gz gsoc2013-evolution-299f6f642e8cda990b50ade6a43c702905d0c59d.tar.zst gsoc2013-evolution-299f6f642e8cda990b50ade6a43c702905d0c59d.zip |
Removed the "is" and "is not" rules from the xml file for address matching
2001-08-07 Jeffrey Stedfast <fejj@ximian.com>
* filtertypes.xml: Removed the "is" and "is not" rules from the
xml file for address matching because users are easily confused.
svn path=/trunk/; revision=11737
-rw-r--r-- | filter/ChangeLog | 5 | ||||
-rw-r--r-- | filter/filtertypes.xml | 27 |
2 files changed, 5 insertions, 27 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 58d7486ba1..f9f89fb953 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,8 @@ +2001-08-07 Jeffrey Stedfast <fejj@ximian.com> + + * filtertypes.xml: Removed the "is" and "is not" rules from the + xml file for address matching because users are easily confused. + 2001-08-03 Jeffrey Stedfast <fejj@ximian.com> * filter-rule.c (get_widget): Do an evil kludgy hack so that the diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml index bca26ca0b3..58252dabf9 100644 --- a/filter/filtertypes.xml +++ b/filter/filtertypes.xml @@ -16,18 +16,6 @@ (match-all (not (header-contains "From" ${sender}))) </code> </option> - <option value="is"> - <title>is</title> - <code> - (match-all (header-matches "From" ${sender})) - </code> - </option> - <option value="is not"> - <title>is not</title> - <code> - (match-all (not (header-matches "From" ${sender}))) - </code> - </option> <option value="starts with"> <title>starts with</title> <code> @@ -86,21 +74,6 @@ (header-contains "Cc" ${recipient})))) </code> </option> - <option value="is"> - <title>is</title> - <code> - (match-all (or (header-matches "To" ${recipient}) - (header-matches "Cc" ${recipient}))) - </code> - </option> - <option value="is not"> - <title>is not</title> - <code> - (match-all (not (or - (header-matches "To" ${recipient}) - (header-matches "Cc" ${recipient})))) - </code> - </option> <option value="starts with"> <title>starts with</title> <code> |