diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-07-02 17:05:17 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-07-02 17:05:17 +0100 |
commit | f20d5669094f438509e84fb762149ddc96a5706c (patch) | |
tree | 68c7ac5b5bcb1c4f6cadaf86b70eac75d419afa0 /test/functional/configs | |
parent | c3b8ab4425a166cfc9fb85068532fc9eeb66a68d (diff) | |
download | rspamd-f20d5669094f438509e84fb762149ddc96a5706c.tar.gz rspamd-f20d5669094f438509e84fb762149ddc96a5706c.zip |
Start functional tests.
Diffstat (limited to 'test/functional/configs')
-rw-r--r-- | test/functional/configs/trivial.conf | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/functional/configs/trivial.conf b/test/functional/configs/trivial.conf new file mode 100644 index 000000000..0750d5834 --- /dev/null +++ b/test/functional/configs/trivial.conf @@ -0,0 +1,25 @@ +options = { + filters = ["spf", "dkim", "regexp"] + url_tld = "${CURDIR}/lua/unit/test_tld.dat" + dns = { + nameserver = "8.8.8.8" + } + pidfile = "/tmp/rspamd-bats.pid" +} +logging = { + type = "console", + level = "debug" +} +metric = { + name = "default", + actions = { + reject = 100500, + } + unknown_weight = 1 +} + +worker { + type = normal + bind_socket = localhost:56789 + count = 1 +} |