aboutsummaryrefslogtreecommitdiffstats
path: root/mail/searchtypes.xml
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2012-05-14 22:23:59 +0800
committerMilan Crha <mcrha@redhat.com>2012-05-14 22:24:49 +0800
commit56b48a7717f9137ecc94d9457e72b5ea4acd6b16 (patch)
treee326a4965078802e9b41b153d3c1575327b8a3a8 /mail/searchtypes.xml
parentec64c08d269accf0a30b21e2f7c535c196e36400 (diff)
downloadgsoc2013-evolution-56b48a7717f9137ecc94d9457e72b5ea4acd6b16.tar
gsoc2013-evolution-56b48a7717f9137ecc94d9457e72b5ea4acd6b16.tar.gz
gsoc2013-evolution-56b48a7717f9137ecc94d9457e72b5ea4acd6b16.tar.bz2
gsoc2013-evolution-56b48a7717f9137ecc94d9457e72b5ea4acd6b16.tar.lz
gsoc2013-evolution-56b48a7717f9137ecc94d9457e72b5ea4acd6b16.tar.xz
gsoc2013-evolution-56b48a7717f9137ecc94d9457e72b5ea4acd6b16.tar.zst
gsoc2013-evolution-56b48a7717f9137ecc94d9457e72b5ea4acd6b16.zip
Bug #669983 - Add "To" only search option (like for CC and BCC exists)
Diffstat (limited to 'mail/searchtypes.xml')
-rw-r--r--mail/searchtypes.xml67
1 files changed, 67 insertions, 0 deletions
diff --git a/mail/searchtypes.xml b/mail/searchtypes.xml
index 680fd7e8a9..0173066aa2 100644
--- a/mail/searchtypes.xml
+++ b/mail/searchtypes.xml
@@ -119,6 +119,73 @@
<input type="address" name="recipient"/>
</part>
+ <part name="toonly">
+ <title>To</title>
+ <input type="optionlist" name="recipient-type">
+ <option value="contains">
+ <title>contains</title>
+ <code>
+ (match-all (header-contains "To" ${recipient}))
+ </code>
+ </option>
+ <option value="not contains">
+ <title>does not contain</title>
+ <code>
+ (match-all (not (header-contains "To" ${recipient})))
+ </code>
+ </option>
+ <option value="is">
+ <title>is</title>
+ <code>
+ (match-all (header-matches "To" ${recipient}))
+ </code>
+ </option>
+ <option value="is not">
+ <title>is not</title>
+ <code>
+ (match-all (not (header-matches "To" ${recipient})))
+ </code>
+ </option>
+ <option value="starts with">
+ <title>starts with</title>
+ <code>
+ (match-all (header-starts-with "To" ${recipient}))
+ </code>
+ </option>
+ <option value="not starts with">
+ <title>does not start with</title>
+ <code>
+ (match-all (not (header-starts-with "To" ${recipient})))
+ </code>
+ </option>
+ <option value="ends with">
+ <title>ends with</title>
+ <code>
+ (match-all (header-ends-with "To" ${recipient}))
+ </code>
+ </option>
+ <option value="not ends with">
+ <title>does not end with</title>
+ <code>
+ (match-all (not (header-ends-with "To" ${recipient})))
+ </code>
+ </option>
+ <option value="matches soundex">
+ <title>sounds like</title>
+ <code>
+ (match-all (header-soundex "To" ${recipient}))
+ </code>
+ </option>
+ <option value="not match soundex">
+ <title>does not sound like</title>
+ <code>
+ (match-all (not (header-soundex "To" ${recipient})))
+ </code>
+ </option>
+ </input>
+ <input type="address" name="recipient"/>
+ </part>
+
<part name="cc">
<title>CC</title>
<input type="optionlist" name="recipient-type">