blob: 6f5ba430228d2e974673f52bb9f1f8e128186e29 (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
# URIBL rules scores
#
# Please don't modify this file as your changes might be overwritten with
# the next update.
#
# You can modify '$LOCAL_CONFDIR/rspamd.conf.local.override' to redefine
# parameters defined on the top level
#
# You can modify '$LOCAL_CONFDIR/rspamd.conf.local' to add
# parameters defined on the top level
#
# For specific modules or configuration you can also modify
# '$LOCAL_CONFDIR/local.d/file.conf' - to add your options or rewrite defaults
# '$LOCAL_CONFDIR/override.d/file.conf' - to override the defaults
#
# See https://rspamd.com/doc/tutorials/writing_rules.html for details
max_score = 12.5;
symbols = {
"SURBL_BLOCKED" {
weight = 0.0;
description = "SURBL: blocked by policy/overusage";
}
"PH_SURBL_MULTI" {
weight = 5.5;
description = "SURBL: Phishing sites";
}
"MW_SURBL_MULTI" {
weight = 5.5;
description = "SURBL: Malware sites";
}
"ABUSE_SURBL" {
weight = 5.5;
description = "SURBL: ABUSE";
}
"CRACKED_SURBL" {
weight = 4.0;
description = "SURBL: cracked site";
}
"RAMBLER_URIBL" {
weight = 4.5;
description = "Rambler uribl";
one_shot = true;
}
"RAMBLER_EMAILBL" {
weight = 9.5;
description = "Rambler emailbl";
one_shot = true;
}
"MSBL_EBL" {
weight = 7.5;
description = "MSBL emailbl";
one_shot = true;
}
"SEM_URIBL_UNKNOWN" {
weight = 0.0;
description = "Spameatingmonkey uribl: unknown result";
}
"SEM_URIBL" {
weight = 3.5;
description = "Spameatingmonkey uribl";
}
"SEM_URIBL_FRESH15_UNKNOWN" {
weight = 0.0;
description = "Spameatingmonkey Fresh15 uribl: unknown result";
}
"SEM_URIBL_FRESH15" {
weight = 3.0;
description = "Spameatingmonkey uribl. Domains registered in the last 15 days (.AERO,.BIZ,.COM,.INFO,.NAME,.NET,.PRO,.SK,.TEL,.US)";
}
"DBL" {
weight = 0.0;
description = "DBL unknown result";
}
"DBL_SPAM" {
weight = 6.5;
description = "DBL uribl spam";
}
"DBL_PHISH" {
weight = 6.5;
description = "DBL uribl phishing";
}
"DBL_MALWARE" {
weight = 6.5;
description = "DBL uribl malware";
}
"DBL_BOTNET" {
weight = 5.5;
description = "DBL uribl botnet C&C domain";
}
"DBL_ABUSE" {
weight = 6.5;
description = "DBL uribl abused legit spam";
}
"DBL_ABUSE_REDIR" {
weight = 1.5;
description = "DBL uribl abused spammed redirector domain";
}
"DBL_ABUSE_PHISH" {
weight = 7.5;
description = "DBL uribl abused legit phish";
}
"DBL_ABUSE_MALWARE" {
weight = 7.5;
description = "DBL uribl abused legit malware";
}
"DBL_ABUSE_BOTNET" {
weight = 5.5;
description = "DBL uribl abused legit botnet C&C";
}
"DBL_PROHIBIT" {
weight = 0.00000;
description = "DBL uribl IP queries prohibited!";
}
"URIBL_MULTI" {
weight = 0.0;
description = "uribl.com: unrecognised result";
}
"URIBL_BLOCKED" {
weight = 0.0;
description = "uribl.com: query refused";
}
"URIBL_BLACK" {
weight = 7.5;
description = "uribl.com black url";
}
"URIBL_RED" {
weight = 3.5;
description = "uribl.com red url";
}
"URIBL_GREY" {
weight = 1.5;
description = "uribl.com grey url";
one_shot = true;
}
"SBL_URIBL" {
weight = 0.0;
description = "SBL URIBL: Filtered result";
}
"URIBL_SBL" {
weight = 6.5;
description = "Spamhaus SBL URIBL";
}
"URIBL_SBL_CSS" {
weight = 6.5;
description = "Spamhaus SBL CSS URIBL";
}
"RBL_SARBL_BAD" {
weight = 2.5;
description = "A domain listed in the mail is blacklisted in SARBL";
}
}
|