summaryrefslogtreecommitdiffstats
path: root/pigeonhole/tests/extensions/enotify/execute/draft-rfc-ex1.sieve
blob: 6747d7b3cadd19e914a77c59dbe36cbac7766a25 (plain)
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
require ["enotify", "fileinto", "variables"];

if header :contains "from" "boss@example.org" {
	notify :importance "1"
		:message "This is probably very important"
		"mailto:alm@example.com";
	# Don't send any further notifications
	stop;
}

if header :contains "to" "sievemailinglist@example.org" {
	# :matches is used to get the value of the Subject header
	if header :matches "Subject" "*" {
		set "subject" "${1}";
	}

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

	notify :importance "3"
		:message "[SIEVE] ${from}: ${subject}"
		"mailto:alm@example.com";
	fileinto "INBOX.sieve";
}