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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| require ["envelope","fileinto","reject"];
| # rule:[spam]
| if header :contains "X-DSPAM-Result" "Spam"
| {
| fileinto "Spam";
| stop;
| }
| # rule:[test1]
| if header :contains ["From","To"] "test@domain.tld"
| {
| discard;
| stop;
| }
| # rule:[test2]
| if anyof (not header :contains :comparator "i;octet" "Subject" "[test]", header :contains "Subject" "[test2]")
| {
| fileinto "test";
| stop;
| }
| # rule:[comments]
| if true
| {
| stop;
| }
| # rule:[reject]
| if size :over 5000K
| {
| reject "Message over 5MB size limit. Please contact me before sending this.";
| }
| # rule:[false]
| if false # size :over 5000K
| {
| stop;
| }
| # rule:[true]
| if true
| {
| stop;
| }
| fileinto "Test";
| # rule:[address test]
| if address :is "From" "nagios@domain.tld"
| {
| fileinto "domain.tld";
| stop;
| }
| # rule:[envelope test]
| if envelope :domain :is "From" "domain.tld"
| {
| fileinto "domain.tld";
| stop;
| }
|
|