diff options
-rw-r--r-- | filter/ChangeLog | 8 | ||||
-rw-r--r-- | filter/vfoldertypes.xml | 18 |
2 files changed, 26 insertions, 0 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index a3a32dd59b..a212eacce9 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,11 @@ +2001-07-11 Jason Leach <jleach@ximian.com> + + * vfoldertypes.xml: Copied the "Attachments" rule part over from + filtertypes.xml, would be a powerful feature for vfolders (see all + the patches across all folders, or all the attachments you've sent, + without having to duplicate potentially big files, blah blah, bug + #1155). + 2001-07-10 Peter Williams <peterw@ximian.com> * vfoldertypes.xml: Put a match-all around the not-body-contains diff --git a/filter/vfoldertypes.xml b/filter/vfoldertypes.xml index 174810b395..73625ef25c 100644 --- a/filter/vfoldertypes.xml +++ b/filter/vfoldertypes.xml @@ -291,6 +291,24 @@ </input> </part> + <part name="attachments"> + <title>Attachments</title> + <input type="optionlist" name="match-type"> + <option value="exist"> + <title>Exist</title> + <code> + (match-all (system-flag "Attachments")) + </code> + </option> + <option value="not exist"> + <title>Do Not Exist</title> + <code> + (match-all (not (system-flag "Attachments"))) + </code> + </option> + </input> + </part> + <part name="mlist"> <title>Mailing list</title> <input type="optionlist" name="mlist-type"> |