aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hooks/mail-received.go
blob: 8f62be5050b16451ae514c529ccf7ed6efe0326a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package hooks

import (
	"fmt"

	"git.sr.ht/~rjarry/aerc/config"
	"git.sr.ht/~rjarry/aerc/models"
)

type MailReceived struct {
	Account string
	Folder  string
	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_ACCOUNT=%s", m.Account),
		fmt.Sprintf("AERC_FOLDER=%s", m.Folder),
		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),
	}
}