aboutsummaryrefslogtreecommitdiffstats
path: root/filter/vfoldertypes.xml
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-02-23 07:33:15 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-02-23 07:33:15 +0800
commitf35cb5cffeba729dce3971199a5f49b6b07d6237 (patch)
treead6a826db985e440160b181f5dd634916a8bebe1 /filter/vfoldertypes.xml
parent978bfbefbb3386979d93c5ef7d6294edaf3dd97b (diff)
downloadgsoc2013-evolution-f35cb5cffeba729dce3971199a5f49b6b07d6237.tar
gsoc2013-evolution-f35cb5cffeba729dce3971199a5f49b6b07d6237.tar.gz
gsoc2013-evolution-f35cb5cffeba729dce3971199a5f49b6b07d6237.tar.bz2
gsoc2013-evolution-f35cb5cffeba729dce3971199a5f49b6b07d6237.tar.lz
gsoc2013-evolution-f35cb5cffeba729dce3971199a5f49b6b07d6237.tar.xz
gsoc2013-evolution-f35cb5cffeba729dce3971199a5f49b6b07d6237.tar.zst
gsoc2013-evolution-f35cb5cffeba729dce3971199a5f49b6b07d6237.zip
Added mailing list matching rules.
2001-02-23 Not Zed <NotZed@Ximian.com> * filtertypes.xml: Added mailing list matching rules. * vfoldertypes.xml: Added mailing list rules. svn path=/trunk/; revision=8356
Diffstat (limited to 'filter/vfoldertypes.xml')
-rw-r--r--filter/vfoldertypes.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/filter/vfoldertypes.xml b/filter/vfoldertypes.xml
index 36157e6ffc..5f5ab473c6 100644
--- a/filter/vfoldertypes.xml
+++ b/filter/vfoldertypes.xml
@@ -275,5 +275,52 @@
<input type="system-flag" name="flag"/>
</part>
+ <part name="mlist">
+ <title>Mailing list</title>
+ <input type="optionlist" name="sender-type">
+ <option value="contains">
+ <title>contains</title>
+ <code>(match-all (header-contains "x-camel-mlist" ${sender}))</code>
+ </option>
+ <option value="not contains">
+ <title>does not contain</title>
+ <code>(match-all (not (header-contains "x-camel-mlist" ${sender})))</code>
+ </option>
+ <option value="is">
+ <title>is</title>
+ <code>(match-all (header-matches "x-camel-mlist" ${sender}))</code>
+ </option>
+ <option value="is not">
+ <title>is not</title>
+ <code>(match-all (not (header-matches "x-camel-mlist" ${sender})))</code>
+ </option>
+ <option value="starts with">
+ <title>starts with</title>
+ <code>
+ (match-all (header-starts-with "x-camel-mlist" ${sender}))
+ </code>
+ </option>
+ <option value="not starts with">
+ <title>does not start with</title>
+ <code>
+ (match-all (not (header-starts-with "x-camel-mlist" ${sender})))
+ </code>
+ </option>
+ <option value="ends with">
+ <title>ends with</title>
+ <code>
+ (match-all (header-ends-with "x-camel-mlist" ${sender}))
+ </code>
+ </option>
+ <option value="not ends with">
+ <title>does not end with</title>
+ <code>
+ (match-all (not (header-ends-with "x-camel-mlist" ${sender})))
+ </code>
+ </option>
+ </input>
+ <input type="string" name="sender"/>
+ </part>
+
</partset>
</filterdescription>