about summary refs log tree commit diff stats
path: root/worker/imap/flags.go
Commit message (Collapse)AuthorAgeFilesLines
* Add additional flagging functionalityARaspiK2020-07-081-5/+4
| | | | | | | | | | | | | | More mail flags can now be set, unset, and toggled, not just the read/seen flag. This functionality is implemented with a new `:flag` and `:unflag` command, which are extensions to the matching `:read` and `:unread` commands, adding support for different flags. In fact, the `read`/`unread` commands are now recognized aliases to `flag`/`unflag`. The new commands are also well documented in aerc(1). The change mostly extends the previous read/unread setting functionality by adding a selection for the flag to change.
* Set AnsweredFlag on successful replySrivathsan Murali2020-05-251-0/+32
|
* imap: emit messageinfo when changing read state.Reto Brunner2020-01-241-2/+17
| | | | We need to emit the changed msgInfo whenever we modify the state
* Use []uint32 instead of imap.SeqSetBen Burwell2019-07-081-2/+4
| | | | | | | | 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.
* Add :read and :unread commandsDrew DeVault2019-06-091-0/+17
|
* s/aerc2/aerc/gDrew DeVault2019-05-171-1/+1
|
* Implement :delete-messageDrew DeVault2019-03-201-0/+43