summaryrefslogtreecommitdiff
path: root/test/aux-fixed/0950.sieve
blob: 2f7b08d74f2554d919a70d82b057de798eb22268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Sieve filter
#

require "fileinto";

if header :contains "from" "coyote" {
	  discard;
} elsif header :contains "from" "spot_this" {
	  fileinto "myfolder";
} elsif header :contains "from" "redirect" {
	  redirect "fred@some_other_dom.ain";
}