Преглед изворни кода

Include flags when fetching items over IMAP

master
Dejan Strbac пре 4 година
committed by Simon Ser
родитељ
комит
15a77185b4
No known key found for this signature in database GPG Key ID: FDE7BE0E88F5E48
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      plugins/base/imap.go

+ 1
- 1
plugins/base/imap.go Прегледај датотеку

@@ -201,7 +201,7 @@ func listMessages(conn *imapclient.Client, mboxName string, page int) ([]IMAPMes
var seqSet imap.SeqSet
seqSet.AddRange(uint32(from), uint32(to))

fetch := []imap.FetchItem{imap.FetchEnvelope, imap.FetchUid, imap.FetchBodyStructure}
fetch := []imap.FetchItem{imap.FetchFlags, imap.FetchEnvelope, imap.FetchUid, imap.FetchBodyStructure}

ch := make(chan *imap.Message, 10)
done := make(chan error, 1)


Loading…
Откажи
Сачувај