diff options
author | Jason Leach <jleach@ximian.com> | 2001-07-11 20:22:31 +0800 |
---|---|---|
committer | Jacob Leach <jleach@src.gnome.org> | 2001-07-11 20:22:31 +0800 |
commit | 0dd6f197758061a2ed2ba8c8dfeaaa7ede818a82 (patch) | |
tree | 90c77abb958e80dd9a9576cd76018d3dc66362c2 | |
parent | 9a7ee7b9a4859a597c04f66a99e1a0517a2b4ed1 (diff) | |
download | gsoc2013-evolution-0dd6f197758061a2ed2ba8c8dfeaaa7ede818a82.tar gsoc2013-evolution-0dd6f197758061a2ed2ba8c8dfeaaa7ede818a82.tar.gz gsoc2013-evolution-0dd6f197758061a2ed2ba8c8dfeaaa7ede818a82.tar.bz2 gsoc2013-evolution-0dd6f197758061a2ed2ba8c8dfeaaa7ede818a82.tar.lz gsoc2013-evolution-0dd6f197758061a2ed2ba8c8dfeaaa7ede818a82.tar.xz gsoc2013-evolution-0dd6f197758061a2ed2ba8c8dfeaaa7ede818a82.tar.zst gsoc2013-evolution-0dd6f197758061a2ed2ba8c8dfeaaa7ede818a82.zip |
Copied the "Attachments" rule part over from filtertypes.xml, would be a
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).
svn path=/trunk/; revision=10996
-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"> |