summaryrefslogtreecommitdiffstats
path: root/pigeonhole/tests/extensions/enotify/execute/draft-rfc-ex2.sieve
blob: a5c6a267995f6c1e6090ea151f35f053cff52ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require ["enotify", "fileinto", "variables", "envelope"];

if header :matches "from" "*@*.example.org" {
	# :matches is used to get the MAIL FROM address
	if envelope :all :matches "from" "*" {
		set "env_from" " [really: ${1}]";
	}

	# :matches is used to get the value of the Subject header
	if header :matches "Subject" "*" {
		set "subject" "${1}";
	}

	# :matches is used to get the address from the From header
	if address :matches :all "from" "*" {
		set "from_addr" "${1}";
	}

	notify :message "${from_addr}${env_from}: ${subject}"
		"mailto:alm@example.com";
}