Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add additional flagging functionality | ARaspiK | 2020-07-08 | 1 | -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 reply | Srivathsan Murali | 2020-05-25 | 1 | -0/+32 |
| | |||||
* | imap: emit messageinfo when changing read state. | Reto Brunner | 2020-01-24 | 1 | -2/+17 |
| | | | | We need to emit the changed msgInfo whenever we modify the state | ||||
* | Use []uint32 instead of imap.SeqSet | Ben Burwell | 2019-07-08 | 1 | -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 commands | Drew DeVault | 2019-06-09 | 1 | -0/+17 |
| | |||||
* | s/aerc2/aerc/g | Drew DeVault | 2019-05-17 | 1 | -1/+1 |
| | |||||
* | Implement :delete-message | Drew DeVault | 2019-03-20 | 1 | -0/+43 |