blob: 8abed421945d925c622d39da1452e6b638a15226 (
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
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
53
54
55
56
|
# Based on examples included the RFC files.
# It doesn't show cases for every token parsed by the lexer.
require ["fileinto", "envelope"];
if address :is "to" "demo@example.org" {
fileinto "demo-list";
} elsif envelope :is "from" "owner@example.org" {
fileinto "lists.cipe";
} elsif (exists "X-Cron-Env",
header :regex ["subject"] [".* A",
".* B"]) {
addflag "Cron";
stop;
} else {
keep;
}
if body :text :contains "project schedule" {
fileinto "project/schedule";
}
require "vacation";
if header :contains "subject" "lunch" {
vacation :handle "ran-away" "I'm out and can't meet for lunch";
} else {
vacation :handle "ran-away" "I'm out";
}
if virustest :value "eq" :comparator "i;ascii-numeric" "0" {
fileinto "Unscanned";
/* Infected with high probability (value range in 1-5) */
}
if envelope :detail "to" "spam"{
fileinto "Spam";
}
if size :over 100k {
discard;
}
elsif address :DOMAIN :is ["From", "To"] "example.com"
{
keep;
}
require ["reject"];
if size :over 1M {
reject text:
Your message is too big. If you want to send me a big attachment,
put it on a public web site and send me a URL.
.
;
}
|