diff options
-rw-r--r-- | filter/ChangeLog | 2 | ||||
-rw-r--r-- | filter/filtertypes.xml | 20 | ||||
-rw-r--r-- | filter/vfoldertypes.xml | 20 |
3 files changed, 22 insertions, 20 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 101fe65c9a..c6de003925 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,8 +1,10 @@ 2001-02-23 Not Zed <NotZed@Ximian.com> * filtertypes.xml: Added mailing list matching rules. + renamed mailing list options to be more meaningful. * vfoldertypes.xml: Added mailing list rules. + renamed mailing list options to be more meaningful. 2001-02-11 Gediminas Paulauskas <menesis@delfi.lt> diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml index d0fdf7156f..370175785d 100644 --- a/filter/filtertypes.xml +++ b/filter/filtertypes.xml @@ -435,49 +435,49 @@ <part name="mlist"> <title>Mailing list</title> - <input type="optionlist" name="sender-type"> + <input type="optionlist" name="mlist-type"> <option value="contains"> <title>contains</title> - <code>(match-all (header-contains "x-camel-mlist" ${sender}))</code> + <code>(match-all (header-contains "x-camel-mlist" ${mlist}))</code> </option> <option value="not contains"> <title>does not contain</title> - <code>(match-all (not (header-contains "x-camel-mlist" ${sender})))</code> + <code>(match-all (not (header-contains "x-camel-mlist" ${mlist})))</code> </option> <option value="is"> <title>is</title> - <code>(match-all (header-matches "x-camel-mlist" ${sender}))</code> + <code>(match-all (header-matches "x-camel-mlist" ${mlist}))</code> </option> <option value="is not"> <title>is not</title> - <code>(match-all (not (header-matches "x-camel-mlist" ${sender})))</code> + <code>(match-all (not (header-matches "x-camel-mlist" ${mlist})))</code> </option> <option value="starts with"> <title>starts with</title> <code> - (match-all (header-starts-with "x-camel-mlist" ${sender})) + (match-all (header-starts-with "x-camel-mlist" ${mlist})) </code> </option> <option value="not starts with"> <title>does not start with</title> <code> - (match-all (not (header-starts-with "x-camel-mlist" ${sender}))) + (match-all (not (header-starts-with "x-camel-mlist" ${mlist}))) </code> </option> <option value="ends with"> <title>ends with</title> <code> - (match-all (header-ends-with "x-camel-mlist" ${sender})) + (match-all (header-ends-with "x-camel-mlist" ${mlist})) </code> </option> <option value="not ends with"> <title>does not end with</title> <code> - (match-all (not (header-ends-with "x-camel-mlist" ${sender}))) + (match-all (not (header-ends-with "x-camel-mlist" ${mlist}))) </code> </option> </input> - <input type="string" name="sender"/> + <input type="string" name="mlist"/> </part> <part name="regex"> diff --git a/filter/vfoldertypes.xml b/filter/vfoldertypes.xml index 5f5ab473c6..2b500f83d9 100644 --- a/filter/vfoldertypes.xml +++ b/filter/vfoldertypes.xml @@ -277,49 +277,49 @@ <part name="mlist"> <title>Mailing list</title> - <input type="optionlist" name="sender-type"> + <input type="optionlist" name="mlist-type"> <option value="contains"> <title>contains</title> - <code>(match-all (header-contains "x-camel-mlist" ${sender}))</code> + <code>(match-all (header-contains "x-camel-mlist" ${mlist}))</code> </option> <option value="not contains"> <title>does not contain</title> - <code>(match-all (not (header-contains "x-camel-mlist" ${sender})))</code> + <code>(match-all (not (header-contains "x-camel-mlist" ${mlist})))</code> </option> <option value="is"> <title>is</title> - <code>(match-all (header-matches "x-camel-mlist" ${sender}))</code> + <code>(match-all (header-matches "x-camel-mlist" ${mlist}))</code> </option> <option value="is not"> <title>is not</title> - <code>(match-all (not (header-matches "x-camel-mlist" ${sender})))</code> + <code>(match-all (not (header-matches "x-camel-mlist" ${mlist})))</code> </option> <option value="starts with"> <title>starts with</title> <code> - (match-all (header-starts-with "x-camel-mlist" ${sender})) + (match-all (header-starts-with "x-camel-mlist" ${mlist})) </code> </option> <option value="not starts with"> <title>does not start with</title> <code> - (match-all (not (header-starts-with "x-camel-mlist" ${sender}))) + (match-all (not (header-starts-with "x-camel-mlist" ${mlist}))) </code> </option> <option value="ends with"> <title>ends with</title> <code> - (match-all (header-ends-with "x-camel-mlist" ${sender})) + (match-all (header-ends-with "x-camel-mlist" ${mlist})) </code> </option> <option value="not ends with"> <title>does not end with</title> <code> - (match-all (not (header-ends-with "x-camel-mlist" ${sender}))) + (match-all (not (header-ends-with "x-camel-mlist" ${mlist}))) </code> </option> </input> - <input type="string" name="sender"/> + <input type="string" name="mlist"/> </part> </partset> |