diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2009-06-03 22:12:35 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@novell.com> | 2009-06-03 22:16:53 +0800 |
commit | 7703ffcdd4e2f5343a80f5f0e082fe5d050b7328 (patch) | |
tree | a628a51444762583ada29a8c6892be6e462586e2 /mail | |
parent | 32bb1e1650e3afe951b35b4ee53edd600741f842 (diff) | |
download | gsoc2013-evolution-7703ffcdd4e2f5343a80f5f0e082fe5d050b7328.tar.gz gsoc2013-evolution-7703ffcdd4e2f5343a80f5f0e082fe5d050b7328.tar.zst gsoc2013-evolution-7703ffcdd4e2f5343a80f5f0e082fe5d050b7328.zip |
Add option for Sender/Addresses contain.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/searchtypes.xml | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/mail/searchtypes.xml b/mail/searchtypes.xml index 83941d875c..63a52ca772 100644 --- a/mail/searchtypes.xml +++ b/mail/searchtypes.xml @@ -329,7 +329,7 @@ </code> </option> </input> - <input type="address" name="recipient"/> + <input type="string" name="recipient"/> </part> <part name="subject"> @@ -764,18 +764,29 @@ </partset> <ruleset> - <rule grouping="any" source="demand"> - <_title>Subject or Sender contains</_title> + <_title>Subject or Addresses contains</_title> <partset> <part name="subject"> <value name="subject-type" type="option" value="contains"/> <value name="subject" type="string"/> - </part> + </part> <part name="sender"> <value name="sender-type" type="option" value="contains"/> <value name="sender" type="string"/> </part> + <part name="to"> + <value name="recipient-type" type="option" value="contains"/> + <value name="recipient" type="address"/> + </part> + <part name="to"> + <value name="recipient-type" type="option" value="contains"/> + <value name="recipient" type="address"/> + </part> + <part name="to"> + <value name="recipient-type" type="option" value="contains"/> + <value name="recipient" type="address"/> + </part> </partset> <sources/> </rule> @@ -796,6 +807,21 @@ </rule> <rule grouping="any" source="demand"> + <_title>Subject or Sender contains</_title> + <partset> + <part name="subject"> + <value name="subject-type" type="option" value="contains"/> + <value name="subject" type="string"/> + </part> + <part name="sender"> + <value name="sender-type" type="option" value="contains"/> + <value name="sender" type="string"/> + </part> + </partset> + <sources/> + </rule> + + <rule grouping="any" source="demand"> <_title>Recipients contain</_title> <partset> <part name="to"> |