From 0535f6333f2f5d13469fc315a65c53ff8a5e83f3 Mon Sep 17 00:00:00 2001 From: ARaspiK Date: Sun, 5 Jul 2020 14:29:52 +0000 Subject: 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. --- doc/aerc.1.scd | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/aerc.1.scd b/doc/aerc.1.scd index 61e35bbc..929aaa9c 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 ] + 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 *: 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] + 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 -- cgit