aboutsummaryrefslogtreecommitdiffstats
path: root/test/functional/configs/plugins.conf
blob: 47d46d8410dba99eb9dfe6091c2334a8ca2214b5 (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
options = {
	filters = ["spf", "dkim", "regexp"]
	url_tld = "${URL_TLD}"
	pidfile = "${TMPDIR}/rspamd.pid"
	lua_path = "${TESTDIR}/../../contrib/lua-fun/?.lua"
	dns {
		nameserver = ["8.8.8.8", "8.8.4.4"];
		retransmits = 10;
		timeout = 2s;
	}
}
logging = {
	type = "file",
	level = "debug"
	filename = "${TMPDIR}/rspamd.log"
}
metric = {
	name = "default",
	actions = {
		reject = 100500,
	}
	unknown_weight = 1
}
worker {
	type = normal
	bind_socket = ${LOCAL_ADDR}:${PORT_NORMAL}
	count = 1
	task_timeout = 60s;
}
modules {
    path = "${TESTDIR}/../../src/plugins/lua/"
}
lua = "${TESTDIR}/../../rules/global_functions.lua"
${PLUGIN_CONFIG}