diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-09-11 10:42:13 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-09-11 10:42:13 +0800 |
commit | 778402dd5c05dfb606720949559f6b4d13aa617b (patch) | |
tree | d4a5f33c2363921b168bec65f55f79144915de16 /mail/searchtypes.xml | |
parent | d24e00ab2f382b79c9404e10e9ddc0bad1dc5587 (diff) | |
download | gsoc2013-evolution-778402dd5c05dfb606720949559f6b4d13aa617b.tar.gz gsoc2013-evolution-778402dd5c05dfb606720949559f6b4d13aa617b.tar.zst gsoc2013-evolution-778402dd5c05dfb606720949559f6b4d13aa617b.zip |
Bug 593905 - 'Subject or Addresses contains' search criteria missing
Diffstat (limited to 'mail/searchtypes.xml')
-rw-r--r-- | mail/searchtypes.xml | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/mail/searchtypes.xml b/mail/searchtypes.xml index ba349993f7..f3a89603ed 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,33 +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> - </partset> - <sources/> - </rule> - - <rule grouping="any" source="demand"> - <_title>Subject or Recipients contains</_title> - <partset> - <part name="subject"> - <value name="subject-type" type="option" value="contains"/> - <value name="subject" type="string"/> + <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> |