diff options
author | Jason Cox <me@jasoncarloscox.com> | 2023-10-29 17:40:47 -0400 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-11-02 11:59:39 +0100 |
commit | 31b50f24d51fd429f30e20fb42a5681149e5bfe7 (patch) | |
tree | 3698ffa2662a04655a042769a23d4a07ccebd4c4 /config/aerc.conf | |
parent | fb8e60c041d7b4a61e5862d6bce6fd3bd8fca000 (diff) | |
download | aerc-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 'config/aerc.conf')
-rw-r--r-- | config/aerc.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/aerc.conf b/config/aerc.conf index 1d5ffe8b..cf9aafa2 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -581,6 +581,10 @@ message/rfc822=colorize #mail-received=notify-send "[$AERC_ACCOUNT/$AERC_FOLDER] New mail from $AERC_FROM_NAME" "$AERC_SUBJECT" # +# Executed when mail is deleted from a folder +#mail-deleted=mbsync "$AERC_ACCOUNT:$AERC_FOLDER" & + +# # Executed when aerc starts #aerc-startup=aerc :terminal calcurse && aerc :next-tab |