88c379dcba
A sequence-set is an IMAP-specific implementation detail. Throughout the UI, aerc simply operates using lists of opaque identifiers. In order to loosen the coupling between the UI and IMAP in particular, replace most usages of imap.SeqSet with []uint32, leaving the translation to a SeqSet to the IMAP backend as needed.
44 lines
946 B
Go
44 lines
946 B
Go
package imap
|
|
|
|
import (
|
|
"io"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/worker/types"
|
|
)
|
|
|
|
func (imapw *IMAPWorker) handleCopyMessages(msg *types.CopyMessages) {
|
|
uids := toSeqSet(msg.Uids)
|
|
if err := imapw.client.UidCopy(uids, msg.Destination); err != nil {
|
|
imapw.worker.PostMessage(&types.Error{
|
|
Message: types.RespondTo(msg),
|
|
Error: err,
|
|
}, nil)
|
|
} else {
|
|
imapw.worker.PostMessage(&types.Done{types.RespondTo(msg)}, nil)
|
|
}
|
|
}
|
|
|
|
type appendLiteral struct {
|
|
io.Reader
|
|
Length int
|
|
}
|
|
|
|
func (m appendLiteral) Len() int {
|
|
return m.Length
|
|
}
|
|
|
|
func (imapw *IMAPWorker) handleAppendMessage(msg *types.AppendMessage) {
|
|
if err := imapw.client.Append(msg.Destination, msg.Flags, msg.Date,
|
|
&appendLiteral{
|
|
Reader: msg.Reader,
|
|
Length: msg.Length,
|
|
}); err != nil {
|
|
|
|
imapw.worker.PostMessage(&types.Error{
|
|
Message: types.RespondTo(msg),
|
|
Error: err,
|
|
}, nil)
|
|
} else {
|
|
imapw.worker.PostMessage(&types.Done{types.RespondTo(msg)}, nil)
|
|
}
|
|
}
|