Explorar el Código

Include flags when fetching items over IMAP

master
Dejan Strbac hace 4 años
committed by Simon Ser
padre
commit
15a77185b4
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: FDE7BE0E88F5E48
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      plugins/base/imap.go

+ 1
- 1
plugins/base/imap.go Ver fichero

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


Cargando…
Cancelar
Guardar