aboutsummaryrefslogtreecommitdiffstats
path: root/mail/filtertypes.xml
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-11-04 22:15:53 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-11-04 22:15:53 +0800
commit2460ca1d162dbd596e6e0a7d7a9f5aedc1bc4287 (patch)
tree7c26559572de76dc5192f81be38f313649d96d36 /mail/filtertypes.xml
parent4e7597a4a2732baeeda9dd4876a873ec6588d6f7 (diff)
downloadgsoc2013-evolution-2460ca1d162dbd596e6e0a7d7a9f5aedc1bc4287.tar
gsoc2013-evolution-2460ca1d162dbd596e6e0a7d7a9f5aedc1bc4287.tar.gz
gsoc2013-evolution-2460ca1d162dbd596e6e0a7d7a9f5aedc1bc4287.tar.bz2
gsoc2013-evolution-2460ca1d162dbd596e6e0a7d7a9f5aedc1bc4287.tar.lz
gsoc2013-evolution-2460ca1d162dbd596e6e0a7d7a9f5aedc1bc4287.tar.xz
gsoc2013-evolution-2460ca1d162dbd596e6e0a7d7a9f5aedc1bc4287.tar.zst
gsoc2013-evolution-2460ca1d162dbd596e6e0a7d7a9f5aedc1bc4287.zip
** Fix for bug #386036
2008-11-04 Milan Crha <mcrha@redhat.com> ** Fix for bug #386036 * vfoldertypes.xml: * filtertypes.xml: Added new option "Sender or Recipients" which filters on From/To/Cc/Bcc headers. svn path=/trunk/; revision=36739
Diffstat (limited to 'mail/filtertypes.xml')
-rw-r--r--mail/filtertypes.xml104
1 files changed, 103 insertions, 1 deletions
diff --git a/mail/filtertypes.xml b/mail/filtertypes.xml
index 74029112d1..60702f2b08 100644
--- a/mail/filtertypes.xml
+++ b/mail/filtertypes.xml
@@ -283,7 +283,109 @@
</input>
<input type="address" name="recipient"/>
</part>
-
+
+ <part name="senderto">
+ <title>Sender or Recipients</title>
+ <input type="optionlist" name="recipient-type">
+ <option value="contains">
+ <title>contains</title>
+ <code>
+ (match-all (or (header-contains "From" ${recipient})
+ (header-contains "To" ${recipient})
+ (header-contains "Cc" ${recipient})
+ (header-contains "Bcc" ${recipient})))
+ </code>
+ </option>
+ <option value="not contains">
+ <title>does not contain</title>
+ <code>
+ (match-all (not (or
+ (header-contains "From" ${recipient})
+ (header-contains "To" ${recipient})
+ (header-contains "Cc" ${recipient})
+ (header-contains "Bcc" ${recipient}))))
+ </code>
+ </option>
+ <option value="is">
+ <title>is</title>
+ <code>
+ (match-all (or (header-matches "From" ${recipient})
+ (header-matches "To" ${recipient})
+ (header-matches "Cc" ${recipient})
+ (header-matches "Bcc" ${recipient})))
+ </code>
+ </option>
+ <option value="is not">
+ <title>is not</title>
+ <code>
+ (match-all (not (or
+ (header-matches "From" ${recipient})
+ (header-matches "To" ${recipient})
+ (header-matches "Cc" ${recipient})
+ (header-matches "Bcc" ${recipient}))))
+ </code>
+ </option>
+ <option value="starts with">
+ <title>starts with</title>
+ <code>
+ (match-all (or (header-starts-with "From" ${recipient})
+ (header-starts-with "To" ${recipient})
+ (header-starts-with "Cc" ${recipient})
+ (header-starts-with "Bcc" ${recipient})))
+ </code>
+ </option>
+ <option value="not starts with">
+ <title>does not start with</title>
+ <code>
+ (match-all (not (or
+ (header-starts-with "From" ${recipient})
+ (header-starts-with "To" ${recipient})
+ (header-starts-with "Cc" ${recipient})
+ (header-starts-with "Bcc" ${recipient}))))
+ </code>
+ </option>
+ <option value="ends with">
+ <title>ends with</title>
+ <code>
+ (match-all (or (header-ends-with "From" ${recipient})
+ (header-ends-with "To" ${recipient})
+ (header-ends-with "Cc" ${recipient})
+ (header-ends-with "Bcc" ${recipient})))
+ </code>
+ </option>
+ <option value="not ends with">
+ <title>does not end with</title>
+ <code>
+ (match-all (not (or
+ (header-ends-with "From" ${recipient})
+ (header-ends-with "To" ${recipient})
+ (header-ends-with "Cc" ${recipient})
+ (header-ends-with "Bcc" ${recipient}))))
+ </code>
+ </option>
+ <option value="matches soundex">
+ <title>sounds like</title>
+ <code>
+ (match-all (or (header-soundex "From" ${recipient})
+ (header-soundex "To" ${recipient})
+ (header-soundex "Cc" ${recipient})
+ (header-soundex "Bcc" ${recipient})))
+ </code>
+ </option>
+ <option value="not match soundex">
+ <title>does not sound like</title>
+ <code>
+ (match-all (not (or
+ (header-soundex "From" ${recipient})
+ (header-soundex "To" ${recipient})
+ (header-soundex "Cc" ${recipient})
+ (header-soundex "Bcc" ${recipient}))))
+ </code>
+ </option>
+ </input>
+ <input type="address" name="recipient"/>
+ </part>
+
<part name="subject">
<title>Subject</title>
<input type="optionlist" name="subject-type">