diff options
author | Moritz Poldrack <git@moritz.sh> | 2023-03-15 22:40:37 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-04-01 01:01:09 +0200 |
commit | 2fef0f4a60c8026c156ad8d75078bccde6a540d8 (patch) | |
tree | cff6819cd0950294ee5e7c20b57582c23d628b4e /lib/hooks/mail-received.go | |
parent | 088d63ce934c34e113a5b3154dfcf91b49132067 (diff) | |
download | aerc-2fef0f4a60c8026c156ad8d75078bccde6a540d8.tar.gz |
config: replace triggers with hooks
Deprecate triggers and replace them with hooks. Now that aerc supports
running arbitrary ex commands over IPC, it is possible to run internal
aerc commands *and* shell commands via external shell scripts. Hooks
only allow running shell commands. Hooks info is passed via environment
variables.
Implements: https://todo.sr.ht/~rjarry/aerc/136
Signed-off-by: Moritz Poldrack <git@moritz.sh>
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Bence Ferdinandy <bence@ferdinandy.com>
Diffstat (limited to 'lib/hooks/mail-received.go')
-rw-r--r-- | lib/hooks/mail-received.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/hooks/mail-received.go b/lib/hooks/mail-received.go new file mode 100644 index 00000000..66622e9e --- /dev/null +++ b/lib/hooks/mail-received.go @@ -0,0 +1,25 @@ +package hooks + +import ( + "fmt" + + "git.sr.ht/~rjarry/aerc/config" + "git.sr.ht/~rjarry/aerc/models" +) + +type MailReceived struct { + MsgInfo *models.MessageInfo +} + +func (m *MailReceived) Cmd() string { + return config.Hooks.MailReceived +} + +func (m *MailReceived) Env() []string { + from := m.MsgInfo.Envelope.From[0] + return []string{ + fmt.Sprintf("AERC_FROM_NAME=%s", from.Name), + fmt.Sprintf("AERC_FROM_ADDRESS=%s", from.Address), + fmt.Sprintf("AERC_SUBJECT=%s", m.MsgInfo.Envelope.Subject), + } +} |