Browse Source

plugins/base/imap: fetch flags on search

master
Drew DeVault 3 years ago
parent
commit
0191aa4698
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      plugins/base/imap.go

+ 1
- 1
plugins/base/imap.go View File

@@ -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…
Cancel
Save