plugins/base/imap: fetch flags on search
This commit is contained in:
parent
6ba418c9b2
commit
0191aa4698
1 changed files with 1 additions and 1 deletions
|
@ -454,7 +454,7 @@ func searchMessages(conn *imapclient.Client, mboxName, query string, page, messa
|
|||
var seqSet imap.SeqSet
|
||||
seqSet.AddNum(nums...)
|
||||
|
||||
fetch := []imap.FetchItem{imap.FetchEnvelope, imap.FetchUid, imap.FetchBodyStructure}
|
||||
fetch := []imap.FetchItem{imap.FetchEnvelope, imap.FetchFlags, imap.FetchUid, imap.FetchBodyStructure}
|
||||
|
||||
ch := make(chan *imap.Message, 10)
|
||||
done := make(chan error, 1)
|
||||
|
|
Loading…
Reference in a new issue