diff options
Diffstat (limited to 'test/functional/configs/lua_test.conf')
-rw-r--r-- | test/functional/configs/lua_test.conf | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/functional/configs/lua_test.conf b/test/functional/configs/lua_test.conf new file mode 100644 index 000000000..0cab3c59c --- /dev/null +++ b/test/functional/configs/lua_test.conf @@ -0,0 +1,32 @@ +options = { + filters = ["spf", "dkim", "regexp"] + url_tld = "${CURDIR}/lua/unit/test_tld.dat" + dns = { + nameserver = "8.8.8.8" + } + pidfile = "${TMPDIR}/rspamd-bats.pid" +} +logging = { + type = "file", + level = "debug" + filename = "/tmp/rspamd-bats.log" +} +metric = { + name = "default", + actions = { + reject = 100500, + } + unknown_weight = 1 +} + +worker { + type = normal + bind_socket = localhost:56789 + count = 1 + keypair { + pubkey = "y3ms1knmetxf8gdeixkf74b6tbpxqugmxzqksnjodiqei7tksyty"; + privkey = "oswsyqndpj3swqa4yqm4yzoyih83otqkeoxpo9km95o46ixh6quy"; + } +} + +lua = @@LUA_SCRIPT@@; |