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:
parent
931c2118f3
commit
ab28001c84
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue