options = { filters = ["spf", "dkim", "regexp"] url_tld = "${TESTDIR}/../lua/unit/test_tld.dat" pidfile = "${TMPDIR}/rspamd.pid" dns { retransmits = 10; timeout = 2s; fake_records = [{ name = "example.net"; type = txt; replies = ["v=spf1 -all"]; }] } } 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 keypair { pubkey = "${KEY_PUB1}"; privkey = "${KEY_PVT1}"; } task_timeout = 60s; } worker { type = controller bind_socket = ${LOCAL_ADDR}:${PORT_CONTROLLER} count = 1 keypair { pubkey = "${KEY_PUB1}"; privkey = "${KEY_PVT1}"; } secure_ip = ["127.0.0.1", "::1"]; stats_path = "${TMPDIR}/stats.ucl"; } classifier { languages_enabled = true; tokenizer { name = "osb"; ${STATS_HASH} ${STATS_KEY} } backend = ${STATS_BACKEND} statfile { spam = true; symbol = BAYES_SPAM; size = 1M; ${REDIS_SERVER} } statfile { spam = false; symbol = BAYES_HAM; size = 1M; ${REDIS_SERVER} } cache { ${REDIS_SERVER} } } lua = "${TESTDIR}/lua/test_coverage.lua"; settings {}