aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJason Cox <me@jasoncarloscox.com>2023-10-29 17:40:47 -0400
committerRobin Jarry <robin@jarry.cc>2023-11-02 11:59:39 +0100
commit31b50f24d51fd429f30e20fb42a5681149e5bfe7 (patch)
tree3698ffa2662a04655a042769a23d4a07ccebd4c4 /doc
parentfb8e60c041d7b4a61e5862d6bce6fd3bd8fca000 (diff)
downloadaerc-31b50f24d51fd429f30e20fb42a5681149e5bfe7.tar.gz
hooks: add mail-deleted hook
The mail-deleted hook runs whenever a message is deleted from a folder. Note that this means moving a message from one folder to another triggers the mail-deleted hook. Changelog-added: `mail-deleted` hook that triggers when a message is removed/moved from a folder. References: https://todo.sr.ht/~rjarry/aerc/136 Signed-off-by: Jason Cox <me@jasoncarloscox.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'doc')
-rw-r--r--doc/aerc-config.5.scd13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd
index a45e2443..200c0609 100644
--- a/doc/aerc-config.5.scd
+++ b/doc/aerc-config.5.scd
@@ -958,6 +958,19 @@ They are configured in the *[hooks]* section of aerc.conf.
*mail-received* = _notify-send "[$AERC_ACCOUNT/$AERC_FOLDER] New mail from $AERC_FROM_NAME" "$AERC_SUBJECT"_
+*mail-deleted* = _<command>_
+ Executed when a message is deleted from a folder. Note that this hook is
+ triggered when moving a message from one folder to another.
+
+ Variables:
+
+ - *AERC_ACCOUNT*
+ - *AERC_FOLDER*
+
+ Example:
+
+ *mail-deleted* = _mbsync "$AERC_ACCOUNT:$AERC_FOLDER"_
+
*aerc-shutdown* = _<command>_
Executed when aerc shuts down. Aerc will wait for the command to finish
before exiting.