aboutsummaryrefslogtreecommitdiffstats
path: root/rspamd.conf.sample
blob: da67662a12b625b589915ea17cd1b9e9777828d7 (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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
# Sample config file for rspamd
# $Id$
#

.include @CMAKE_INSTALL_PREFIX@/etc/rspamd/drugs.inc
.include @CMAKE_INSTALL_PREFIX@/etc/rspamd/lotto.inc
.include @CMAKE_INSTALL_PREFIX@/etc/rspamd/fraud.inc
.include @CMAKE_INSTALL_PREFIX@/etc/rspamd/headers.inc
.include @CMAKE_INSTALL_PREFIX@/etc/rspamd/html.inc


# pidfile - path to pid file
# Default: pidfile = /var/run/rspamd.pid
pidfile = "/var/run/rspamd.pid";


worker {
    type = "normal";

    # Number of workers to process connections
    # Default: number of processors in system
    count = 1;

    # Socket for accepting mail to filter, can be unix socket if begin with '/'
    # (bind_socket=/var/run/rspamd.sock for example)
    bind_socket = localhost:11333;
};


# Settings for controller interface
worker {
    type = "controller";

	# Bind socket for control interface
	bind_socket = localhost:11334;

    count = 1;
	# Password for privilleged commands
	password = "q1";
};

# Settings for fuzzy storage interface
worker {
    type = "fuzzy";

	# Bind socket for control interface
	bind_socket = localhost:11335;

    count = 1;
	# Path to filesystem storage
	hashfile = "/tmp/fuzzy.db";
};

# Options for lmtp worker
#worker {
	#type = "lmtp";
	# Bind socket for lmtp interface
	#bind_socket = localhost:11335;
	# Metric that is considered as main. If we have spam result on
	# this metric, lmtp delivery would be failed
	#metric = "default";
	# Number of lmtp workers
	#count = 1;
#};

#worker {
	#type = "delivery";
	# Path to delivery agent, %f is expanded as mail from address and %r 
	# is expanded as recipient address
	# Expample: agent = "/usr/local/bin/procmail -f %f -d %r"
	#agent = "/dev/null";
	# Bind socket for lmtp interface
	# Example: bind_socket = localhost:25
	
	# Whether we should use lmtp for MTA delivery
	#lmtp = no;
#};


# Sample metric definition
metric {
	# Name of metric
	name = "testmetric";
	# Score to count message as spam by this metric
	required_score = 10.1;
	# Symbols cache path for optimal checks planning
	cache_file = "/tmp/symbols.cache";
};

# Logging settings
logging {
	# Log type can be: console, syslog and file
	log_type = console;
	# Log level can be: DEBUG, INFO, WARN and ERROR
	log_level = INFO;
	# Log facility specifies facility for syslog logging, see syslog (3) for details
	# log_facility = "LOG_MAIL";
	
	# Log file is used with log type "file"
	# log_file = "/var/log/rspamd.log"
};

# Limit for statfile pool size
# Default: 100M
statfile_pool_size = 40M;

# Classifier definition
classifier {
	# Type of classfier
    type = "winnow";
	# Tokenizer used
    tokenizer = "osb-text";
    # Sample statfile definition
    statfile {
        # Alias is used for learning and is used as symbol
        symbol = "WINNOW_SPAM";
        # Pattern is path to file, can include %r - recipient name and %f - mail from value
        path = "/tmp/test.spam";
        # Size of this statfile class
        size = 10M;
        # Tokenizer for this statfile
        # Deafault: osb-text
        #tokenizer = "osb-text";
        autolearn {
            min_mark = 10.0;
        };
    };
    statfile {
        symbol = "WINNOW_HAM";
        path = "/tmp/test.ham";
        size = 10M;
        autolearn {
            max_mark = 0.1;
        };
    };
};

# Factors coefficients
factors {
    # SURBL's
	"SC_SURBL_MULTI" = 5.5;
	"WS_SURBL_MULTI" = 5.5;
	"PH_SURBL_MULTI" = 5.5;
	"OB_SURBL_MULTI" = 5.5;
	"AB_SURBL_MULTI" = 5.5;
	"JP_SURBL_MULTI" = 5.5;
	"RAMBLER_URIBL" = 10.5;
    
    # Regexp factors
	"R_TINYURL" = 2;
	"R_FREE_HOSTING" = 4;
	"R_FREE_HOSTING_NAROD" = 3;
	"R_WWW_EKONF_COM" = 10;
	"SUBJECT_NEEDS_ENCODING" = 1;

	"R_POCHTA_RU" = 10;
	"R_BAD_CTE_7BIT" = 6;
	"R_UNDISC_RCPT" = 5;
	"MISSING_MID" = 3;
	"R_RCVD_SPAMBOTS" = 3;
	"R_TO_SEEMS_AUTO" = 3;
	"R_MISSING_CHARSET" = 5;
	"R_SAJDING" = 8;
	"R_FORGED_MPOP_WEBMAIL" = 8;
	"R_WHITE_ON_WHITE" = 9;
	"R_NO_SPACE_IN_FROM" = 3;
	"R_FLASH_REDIR_IMGSHACK" = 10;
	"R_SPAM_FROM_VALUEHOST" = 10;
	"R_SPAM_FROM_MTU" = 8;
	"R_SPAM_FROM_ONO" = 10;
	"R_SPAM_FROM_VERSATEL" = 10;
	"R_SPAM_FROM_LIBERO" = 10;
	"R_FAKE_OUTLOOK"= 8;
	"R_FAKE_THEBAT"= 8;
	"R_LOTTO" = 5;
	"KAM_LOTTO1" = 7;
	"FORGED_OUTLOOK_HTML" = 5;
	"SUSPICIOUS_RECIPS" = 3.5;
	"HTML_TAG_BALANCE_HEAD" = 5;
	"SORTED_RECIPS" = 3.5;
	"TRACKER_ID" = 3.843;
	"ADVANCE_FEE_2" = 3.300;
	"ADVANCE_FEE_3" = 2.121;
	"FORGED_MUA_OUTLOOK" = 3;
	"FORGED_OUTLOOK_TAGS" = 2.099;
	"HTML_SHORT_LINK_IMG_2" = 3;
	"INVALID_MSGID" = 5;
	"HTML_MIME_NO_HTML_TAG" = 2;
	"MIME_HEADER_CTYPE_ONLY" = 2;
	"MISSING_MIMEOLE" = 5;
	"MISSING_SUBJECT" = 2;
	"RATWARE_MS_HASH" = 2;
	"STOX_REPLY_TYPE" = 1;
	"FM_FAKE_HELO_VERIZON" = 2;
	"FORGED_MSGID_YAHOO" = 2;
	"FORGED_MUA_THEBAT_BOUN" = 2;
	"RCVD_DOUBLE_IP_SPAM" = 2;
	"REPTO_QUOTE_YAHOO" = 2;
	"DRUGS_DIET" = 2;
	"DRUGS_ERECTILE" = 2;
	"DRUGS_ANXIETY" = 2;
	"DRUGS_ANXIETY_EREC" = 2;
	"DRUGS_MANYKINDS" = 2;
	"FAKE_REPLY_C" = 6;
	"MIME_HTML_ONLY" = 1;
    
    # Modules factors
    "R_MIXED_CHARSET" = 5;
    "R_BAD_EMAIL" = 10.5;
};


# SURBL module params, note that single quotes are mandatory here
.module 'surbl' {
	# Address to redirector in host:port format
	#redirector = "localhost:8080";
	# Connect timeout for redirector
	redirector_connect_timeout = "1s";
	# IO timeout for redirector (may be usefull to set this value rather big)
	redirector_read_timeout = "10s";
	# This is suffix for surbl dns requests,
	# %b is replaced with bit metric if it is found
	suffix_%b_SURBL_MULTI = "multi.surbl.org";

	# Bits that are used to determine specific URI black list
	# details are at http://www.surbl.org/lists.html#multi
	# sytax is: bit_{number} = "SYMBOL"
	bit_2 = "SC"; # sc.surbl.org
	bit_4 = "WS"; # ws.surbl.org
	bit_8 = "PH"; # ph.surbl.org
	bit_16 = "OB"; # ob.surbl.org
	bit_32 = "AB"; # ab.surbl.org
	bit_64 = "JP"; # jp.surbl.org

	# Metric for surbl module
	metric = "default";
	# List of public known hostings (for which we should use 3 components of domain name instead of 2)
	2tld = "file://@CMAKE_INSTALL_PREFIX@/etc/rspamd/2tld.inc";
	# Whitelisted urls
	whitelist = "file://@CMAKE_INSTALL_PREFIX@/etc/rspamd/surbl-whitelist.inc";
};

.module 'regexp' {
	R_TINYURL = "${R_TINYURL}";
	R_FREE_HOSTING = "${R_FREE_HOSTING}";
	R_WWW_EKONF_COM = "${R_WWW_EKONF_COM}";
	R_FREE_HOSTING_NAROD = "${R_FREE_HOSTING_NAROD}";
	SUBJECT_NEEDS_ENCODING = "${SUBJECT_NEEDS_ENCODING}";

	R_POCHTA_RU = "${R_POCHTA_RU}";
	R_BAD_CTE_7BIT="${R_BAD_CTE_7BIT}";
	R_UNDISC_RCPT="${R_UNDISC_RCPT}";
	MISSING_MID="${MISSING_MID}";
	R_RCVD_SPAMBOTS="${R_RCVD_SPAMBOTS}";
	R_TO_SEEMS_AUTO="${R_TO_SEEMS_AUTO}";
	R_SAJDING="${R_SAJDING}";
	R_FORGED_MPOP_WEBMAIL="${R_FORGED_MPOP_WEBMAIL}";
	R_WHITE_ON_WHITE="${R_WHITE_ON_WHITE}";
	R_NO_SPACE_IN_FROM="${R_NO_SPACE_IN_FROM}";
	R_FLASH_REDIR_IMGSHACK="${R_FLASH_REDIR_IMGSHACK}";
	R_SPAM_FROM_VALUEHOST="${R_SPAM_FROM_VALUEHOST}";
	R_SPAM_FROM_MTU="${R_SPAM_FROM_MTU}";
	R_SPAM_FROM_ONO="${R_SPAM_FROM_ONO}";
	R_SPAM_FROM_VERSATEL="${R_SPAM_FROM_VERSATEL}";
	R_SPAM_FROM_LIBERO="${R_SPAM_FROM_LIBERO}";
	R_FAKE_OUTLOOK="${R_FAKE_OUTLOOK}";
	R_FAKE_THEBAT="${R_FAKE_THEBAT}";
	R_MISSING_CHARSET="${R_MISSING_CHARSET}";
	R_LOTTO="${R_LOTTO}";
	KAM_LOTTO1="${KAM_LOTTO1}";
	FORGED_OUTLOOK_HTML="${FORGED_OUTLOOK_HTML}";
	SUSPICIOUS_RECIPS="${SUSPICIOUS_RECIPS}";
	SORTED_RECIPS="${SORTED_RECIPS}";
	TRACKER_ID="${TRACKER_ID}";
	ADVANCE_FEE_2="${ADVANCE_FEE_2}";
	ADVANCE_FEE_3="${ADVANCE_FEE_3}";
	FORGED_MUA_OUTLOOK="${FORGED_MUA_OUTLOOK}";
	FORGED_OUTLOOK_TAGS="${FORGED_OUTLOOK_TAGS}";
	HTML_SHORT_LINK_IMG_2="${HTML_SHORT_LINK_IMG_2}";
	INVALID_MSGID="${INVALID_MSGID}";
	HTML_MIME_NO_HTML_TAG="${HTML_MIME_NO_HTML_TAG}";
	MIME_HEADER_CTYPE_ONLY="${MIME_HEADER_CTYPE_ONLY}";
	MISSING_MIMEOLE="${MISSING_MIMEOLE}";
	MISSING_SUBJECT="${MISSING_SUBJECT}";
	RATWARE_MS_HASH="${RATWARE_MS_HASH}";
	STOX_REPLY_TYPE="${STOX_REPLY_TYPE}";
	FM_FAKE_HELO_VERIZON="${FM_FAKE_HELO_VERIZON}";
	FORGED_MSGID_YAHOO="${FORGED_MSGID_YAHOO}";
	FORGED_MUA_THEBAT_BOUN="${FORGED_MUA_THEBAT_BOUN}";
	RCVD_DOUBLE_IP_SPAM="${RCVD_DOUBLE_IP_SPAM}";
	REPTO_QUOTE_YAHOO="${REPTO_QUOTE_YAHOO}";
	DRUGS_DIET="${DRUGS_DIET}";
	DRUGS_ERECTILE="${DRUGS_ERECTILE}";
	DRUGS_ANXIETY="${DRUGS_ANXIETY}";
	DRUGS_ANXIETY_EREC="${DRUGS_ANXIETY_EREC}";
	DRUGS_MANYKINDS="${DRUGS_MANYKINDS}";
	
	FAKE_REPLY_C="${FAKE_REPLY_C}";
	MIME_HTML_ONLY="${MIME_HTML_ONLY}";
};

.module 'chartable' {
	metric = "default";
	symbol = "R_MIXED_CHARSET";
	threshold = "0.1";
};

.module 'emails' {
    metric = "default";
	symbol = "R_BAD_EMAIL";
    #blacklist = "file:///some/path/emails.lst";
};

# Module for fuzzy checksum loading
.module 'fuzzy_check' {
    metric = "default";
	symbol = "R_FUZZY";
	# List of fuzzy storage servers, separated by ',' or ';' or simple by spaces
	servers = "localhost:11335";
};

# If enables threat each regexp as raw regex and do not try to convert
# each text part to utf8 encoding. Save a lot of resources but less
# portable.
# Default: no
raw_mode = yes;

filters = "surbl,regexp,chartable,emails";

# Definition of view, views may allow to customize rules for different messages
view {
	# All directives here may be duplicated to add specific elements or regexp/files
	# List of ip/mask for this view
	ip = "file://@CMAKE_INSTALL_PREFIX@/etc/rspamd/ip_internal.inc";
	# From addresses for this view:
	# list is placed in file:
	#from = "file://@CMAKE_INSTALL_PREFIX@/etc/rspamd/from_internal.inc";
	# list is regexp:
	#from = "/^.+@example.com$/i";
	# Symbols to check, can also be list of files or regexp:
	symbols = "/^[A-Z]{2}_SURBL_MULTI$/i";
};

# Settings files
settings {
	# json data for user's settings
	#user_settings = "file:///some/json/file";
	
	# json data for domain's settings
	#domain_settings = "file:///some/other/json/file";
};

# Example of json config:
# [
#     {
#         "name": "cebka@test.ru",
#         "metrics":
#         {
#             "default": 5.5
#         },
#         "factors":
#         {
#             "R_FUZZY": 10.1
#         },
#         "want_spam": false
#     }
# ]