diff options
author | ARaspiK <araspik@protonmail.com> | 2020-07-05 14:29:52 +0000 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-07-08 09:13:03 +0200 |
commit | 0535f6333f2f5d13469fc315a65c53ff8a5e83f3 (patch) | |
tree | fa3adf96b16d4a0296c04b6a17f5433c03fbc8de /doc/aerc.1.scd | |
parent | fda3f43e7c5e5a175a01dd3e5b8637b1ecb30c51 (diff) | |
download | aerc-0535f6333f2f5d13469fc315a65c53ff8a5e83f3.tar.gz |
Add additional flagging functionality
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.
Diffstat (limited to 'doc/aerc.1.scd')
-rw-r--r-- | doc/aerc.1.scd | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/doc/aerc.1.scd b/doc/aerc.1.scd index 61e35bb..929aaa9 100644 --- a/doc/aerc.1.scd +++ b/doc/aerc.1.scd @@ -136,16 +136,39 @@ message list, the message in the message viewer, etc). *-T*: Use the specified template file for creating the initial message body -*read* +*read* [-t] Marks the marked or selected messages as read. *-t*: Toggle the messages between read and unread. -*unread* +*unread* [-t] Marks the marked or selected messages as unread. *-t*: Toggle the messages between read and unread. +*flag* [-t] [-a | -x <flag>] + Sets (enables) a certain flag on the marked or selected messages. + + *-t*: Toggle the flag instead of setting (enabling) it. + + *-a*: Mark message as answered/unanswered. + + *-x <flag>*: Mark message with specific flag. + + The available flags are (adapted from RFC 3501, section 2.3.2): + + Seen + Message has been read + + Answered + Message has been answered + + Flagged + Message is flagged for urgent/special attention + +*unflag* [-t] <flag> + Operates exactly like *flag*, defaulting to unsetting (disabling) flags. + *modify-labels* <[+-]label>... Modify message labels (e.g. notmuch tags). Labels prefixed with a '+' are added, those prefixed with a '-' removed. As a convenience, labels without |