1
0
Fork 0
mirror of https://git.code.sf.net/p/archivemail/code synced 2025-03-12 07:42:50 +00:00

Fixed invalid IMAP filter string for large messages (--size option).

Closes: #863813
This commit is contained in:
Nikolaus Schulz 2006-10-02 00:22:58 +00:00
parent 931c2118f3
commit ab28001c84

View file

@ -977,7 +977,7 @@ def build_imap_filter():
if not options.include_flagged:
filter.append("UNFLAGGED")
if options.min_size:
filter.append("BIGGER %d" % options.min_size)
filter.append("LARGER %d" % options.min_size)
if options.preserve_unread:
filter.append("SEEN")