diff options
Diffstat (limited to 'test/functional/configs/trivial.conf')
-rw-r--r-- | test/functional/configs/trivial.conf | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/test/functional/configs/trivial.conf b/test/functional/configs/trivial.conf new file mode 100644 index 0000000..97e3a30 --- /dev/null +++ b/test/functional/configs/trivial.conf @@ -0,0 +1,50 @@ +options = { + filters = ["spf", "dkim", "regexp"] + url_tld = "{= env.TESTDIR =}/../lua/unit/test_tld.dat" + pidfile = "{= env.TMPDIR =}/rspamd.pid"; + lua_path = "{= env.INSTALLROOT =}/share/rspamd/lib/?.lua"; + dns { + nameserver = ["8.8.8.8", "8.8.4.4"]; + retransmits = 10; + timeout = 2s; + } +} +logging = { + log_urls = true; + type = "file", + level = "debug" + filename = "{= env.TMPDIR =}/rspamd.log"; + log_usec = true; +} +metric = { + name = "default", + actions = { + reject = 100500, + } + unknown_weight = 1 +} + +worker { + type = normal + bind_socket = "{= env.LOCAL_ADDR =}:{= env.PORT_NORMAL =}" + count = 1 + keypair { + pubkey = "{= env.KEY_PUB1 =}"; + privkey = "{= env.KEY_PVT1 =}"; + } + task_timeout = 10s; +} + +worker { + type = controller + bind_socket = "{= env.LOCAL_ADDR =}:{= env.PORT_CONTROLLER =}" + count = 1 + secure_ip = ["127.0.0.1", "::1"]; + stats_path = "{= env.TMPDIR =}/stats.ucl" +} + +modules { + path = "{= env.TESTDIR =}/../../src/plugins/lua/" +} +lua = "{= env.INSTALLROOT =}/share/rspamd/rules/rspamd.lua" + |