Fixed invalid IMAP filter string for large messages (--size option).
Closes: #863813
This commit is contained in:
parent
931c2118f3
commit
ab28001c84
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in New Issue