blob: db264aa42ef36440d1d08190ab6de81ce5fc5a12 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
.include(duplicate=append,priority=0) "{= env.TESTDIR =}/configs/plugins.conf"
dmarc {}
spf {}
whitelist {
rules {
"WHITELIST_DDS" = {
valid_dkim = true;
valid_dmarc = true;
valid_spf = true;
domains = [
"{= env.TESTDIR =}/configs/maps/domains.list",
];
score = -3.0;
inverse_symbol = "BLACKLIST_DDS";
}
"WHITELIST_DKIM" = {
valid_dkim = true;
domains = [
"{= env.TESTDIR =}/configs/maps/domains.list",
];
description = "Mail comes from the whitelisted domain and has a valid DKIM signature";
score = -1.0;
inverse_symbol = "BLACKLIST_DKIM";
}
"WHITELIST_SPF" = {
valid_spf = true;
domains = [
"{= env.TESTDIR =}/configs/maps/domains.list",
];
score = -1.0
inverse_multiplier = 3.0
description = "Mail comes from the whitelisted domain and has a valid SPF policy";
inverse_symbol = "BLACKLIST_SPF";
}
"WHITELIST_SPF_DKIM" = {
valid_spf = true;
valid_dkim = true;
domains = [
"{= env.TESTDIR =}/configs/maps/domains.list"
];
score = -3.0;
description = "Mail comes from the whitelisted domain and has a valid SPF policy and valid DKIM signature";
}
"WHITELIST_DMARC_DKIM" = {
valid_dmarc = true;
valid_dkim = true;
domains = [
"{= env.TESTDIR =}/configs/maps/domains.list",
];
score = -2.0;
description = "Mail comes from the whitelisted domain and has valid DMARC and DKIM policies";
inverse_symbol = "BLACKLIST_DMARC_DKIM";
}
"WHITELIST_DMARC" = {
valid_dmarc = true;
domains = [
"{= env.TESTDIR =}/configs/maps/domains.list",
];
score = -2.0;
description = "Mail comes from the whitelisted domain and has valid DMARC policy";
inverse_symbol = "BLACKLIST_DMARC";
}
"STRICT_DMARC" = {
strict = true;
valid_dmarc = true;
domains = [
"{= env.TESTDIR =}/configs/maps/domains.list",
];
score = -3.0;
}
}
}
|