diff options
-rw-r--r-- | mail/ChangeLog | 9 | ||||
-rw-r--r-- | mail/filtertypes.xml | 18 | ||||
-rw-r--r-- | mail/searchtypes.xml | 18 | ||||
-rw-r--r-- | mail/vfoldertypes.xml | 18 |
4 files changed, 63 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 7c51b11110..7a19402b3f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,14 @@ 2007-07-07 Srinivasa Ragavan <sragavan@novell.com> + ** Fix for bug #317281 from Michael P. Lepore + + * filtertypes.xml: Add support to search/filter/vfolders on flag + completion status + * searchtypes.xml: + * vfoldertypes.xml: + +2007-07-07 Srinivasa Ragavan <sragavan@novell.com> + ** Fix for bug #312370 from B S Srinidhi * em-format-html.c: (emfh_gethttp): diff --git a/mail/filtertypes.xml b/mail/filtertypes.xml index 0b8e3211de..b10cf182ad 100644 --- a/mail/filtertypes.xml +++ b/mail/filtertypes.xml @@ -505,6 +505,24 @@ </input> </part> + <part name="completed-on"> + <title>Completed On</title> + <input type="optionlist" name="date-spec-type"> + <option value="is set"> + <title>is set</title> + <code> + (match-all (not (= (user-tag "completed-on") ""))) + </code> + </option> + <option value="is not set"> + <title>is not set</title> + <code> + (match-all (= (user-tag "completed-on") "")) + </code> + </option> + </input> + </part> + <part name="attachments"> <title>Attachments</title> <input type="optionlist" name="match-type"> diff --git a/mail/searchtypes.xml b/mail/searchtypes.xml index fb3fde6e9d..c39791843e 100644 --- a/mail/searchtypes.xml +++ b/mail/searchtypes.xml @@ -376,6 +376,24 @@ </input> </part> + <part name="completed-on"> + <title>Completed On</title> + <input type="optionlist" name="date-spec-type"> + <option value="is set"> + <title>is set</title> + <code> + (match-all (not (= (user-tag "completed-on") ""))) + </code> + </option> + <option value="is not set"> + <title>is not set</title> + <code> + (match-all (= (user-tag "completed-on") "")) + </code> + </option> + </input> + </part> + <part name="attachments"> <title>Attachments</title> <input type="optionlist" name="match-type"> diff --git a/mail/vfoldertypes.xml b/mail/vfoldertypes.xml index f41a9e908c..c1b60d40e8 100644 --- a/mail/vfoldertypes.xml +++ b/mail/vfoldertypes.xml @@ -379,6 +379,24 @@ </input> </part> + <part name="completed-on"> + <title>Completed On</title> + <input type="optionlist" name="date-spec-type"> + <option value="is set"> + <title>is set</title> + <code> + (match-all (not (= (user-tag "completed-on") ""))) + </code> + </option> + <option value="is not set"> + <title>is not set</title> + <code> + (match-all (= (user-tag "completed-on") "")) + </code> + </option> + </input> + </part> + <part name="attachments"> <title>Attachments</title> <input type="optionlist" name="match-type"> |