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
1 changed files with 1 additions and 1 deletions

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")