diff options
-rw-r--r-- | filter/ChangeLog | 5 | ||||
-rw-r--r-- | filter/filtertypes.xml | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 868fee9fe9..9e5f062ec8 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,8 @@ +2002-09-19 Not Zed <NotZed@Ximian.com> + + * filtertypes.xml: Changed source account, use header-source + rather than (= (get-source) ...) + 2002-09-13 Jeffrey Stedfast <fejj@ximian.com> * filtertypes.xml: Add a Run Once action to run a command only diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml index 2a192d1c61..9c7dc8ea15 100644 --- a/filter/filtertypes.xml +++ b/filter/filtertypes.xml @@ -568,13 +568,13 @@ <option value="is"> <title>is</title> <code> - (match-all (= (get-source) ${source})) + (match-all (header-source ${source})) </code> </option> <option value="is-not"> <title>is not</title> <code> - (match-all (not (= (get-source) ${source}))) + (match-all (not (header-source ${source}))) </code> </option> </input> |