소스 검색

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 키 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)


불러오는 중...
취소
저장