aboutsummaryrefslogtreecommitdiffstats
path: root/config/hooks.go
diff options
context:
space:
mode:
authorBence Ferdinandy <bence@ferdinandy.com>2024-04-10 20:08:00 +0200
committerRobin Jarry <robin@jarry.cc>2024-04-14 11:50:39 +0200
commitcee5d5a3f602e5db0ca3feb6e0754c1bb0059f36 (patch)
treec380b0cb317a62d17b6ff4922fbc6c95486f3295 /config/hooks.go
parentae3f7419ce1b6d4a81c4f240ff1073ba45f45b52 (diff)
downloadaerc-cee5d5a3f602e5db0ca3feb6e0754c1bb0059f36.tar.gz
hooks: add tag-modified
Add the tag-modified hook for notmuch and JMAP accounts. References: https://todo.sr.ht/~rjarry/aerc/136 Changelog-added: New `tag-modified` hook for notmuch and JMAP accounts. Signed-off-by: Bence Ferdinandy <bence@ferdinandy.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'config/hooks.go')
-rw-r--r--config/hooks.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/hooks.go b/config/hooks.go
index 4fc9482e..bd053e95 100644
--- a/config/hooks.go
+++ b/config/hooks.go
@@ -12,6 +12,7 @@ type HooksConfig struct {
MailDeleted string `ini:"mail-deleted"`
MailAdded string `ini:"mail-added"`
MailSent string `ini:"mail-sent"`
+ TagModified string `ini:"tag-modified"`
}
var Hooks HooksConfig