diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-01-30 18:38:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-30 18:38:00 +0000 |
commit | fc32c386a278852134b5986ca0d7687b40bbf36c (patch) | |
tree | f07bd694b090b2a4c66375a85e30ac4fba26160c /test/functional/configs | |
parent | ecb4f1bb448c5342a77daec3f6936fb0ae9701a9 (diff) | |
parent | 77e0862c9eb71bf1aa22892235d3aaad4431d236 (diff) | |
download | rspamd-fc32c386a278852134b5986ca0d7687b40bbf36c.tar.gz rspamd-fc32c386a278852134b5986ca0d7687b40bbf36c.zip |
Merge pull request #2007 from fatalbanana/miltertest
Beginnings of tests for milter
Diffstat (limited to 'test/functional/configs')
-rw-r--r-- | test/functional/configs/milter.conf | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/test/functional/configs/milter.conf b/test/functional/configs/milter.conf new file mode 100644 index 000000000..306ad511d --- /dev/null +++ b/test/functional/configs/milter.conf @@ -0,0 +1,58 @@ +options = { + filters = ["spf", "dkim", "regexp"] + url_tld = "${URL_TLD}" + pidfile = "${TMPDIR}/rspamd.pid" + lua_path = "${INSTALLROOT}/share/rspamd/lib/?.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; +} +worker { + type = controller + bind_socket = ${LOCAL_ADDR}:${PORT_CONTROLLER} + count = 1 + secure_ip = ["127.0.0.1", "::1"]; + stats_path = "${TMPDIR}/stats.ucl" +} +worker { + type = "rspamd_proxy"; + count = 1; + timeout = 120; + upstream { + local { + hosts = "${LOCAL_ADDR}:${PORT_NORMAL}"; + default = true; + } + } + bind_socket = "${LOCAL_ADDR}:${PORT_PROXY}"; + milter = true; +} +modules { + path = "${TESTDIR}/../../src/plugins/lua/" +} +lua = "${INSTALLROOT}/share/rspamd/rules/rspamd.lua" +milter_headers { + extended_spam_headers = true; + skip_local = false; + skip_authenticated = false; +} |