aboutsummaryrefslogtreecommitdiffstats
path: root/worker/imap/movecopy.go
Commit message (Collapse)AuthorAgeFilesLines
* Use []uint32 instead of imap.SeqSetBen Burwell2019-07-081-1/+2
| | | | | | | | 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.
* s/aerc2/aerc/gDrew DeVault2019-05-171-1/+1
|
* Copy sent emails to the Sent folderDrew DeVault2019-05-151-0/+27
| | | | Or rather, to a user-specified folder
* Implement :copy (aka :cp)Drew DeVault2019-05-141-0/+16