ソースを参照

Include flags when fetching items over IMAP

master
Dejan Strbac 4年前
committed by Simon Ser
コミット
15a77185b4
この署名に対応する既知のキーがデータベースに存在しません GPGキー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)


読み込み中…
キャンセル
保存