blob: ef599ef3f50b5db2db50ab2d109d9ea23c8c51be [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001symbols {
2 "MAILCOW_AUTH" {
3 description = "mailcow authenticated";
4 score = -20.0;
5 }
6 "CTYPE_MIXED_BOGUS" {
7 score = 0.0;
8 }
9 "BAD_REP_POLICIES" {
10 score = 2.0;
11 }
12 "BULK_HEADER" {
13 score = 4.0;
14 }
15}
16
17group "MX" {
18 "MX_INVALID" {
19 score = 0.5;
20 description = "No connectable MX";
21 one_shot = true;
22 }
23 "MX_MISSING" {
24 score = 2.0;
25 description = "No MX record";
26 one_shot = true;
27 }
28 "MX_GOOD" {
29 score = -0.01;
30 description = "MX was ok";
31 one_shot = true;
32 }
33}
34
35group "reputation" {
36 symbols = {
37 "IP_REPUTATION_HAM" {
38 weight = 1.0;
39 }
40 "IP_REPUTATION_SPAM" {
41 weight = 4.0;
42 }
43 "SENDER_REP_HAM" {
44 weight = 1.0;
45 }
46 "SENDER_REP_SPAM" {
47 weight = 2.0;
48 }
49 }
50}