summaryrefslogtreecommitdiff
path: root/test/confs/4009
diff options
context:
space:
mode:
authorAndrew Lewis <exim@judo.za.org>2015-01-24 23:42:59 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2015-01-25 17:39:41 +0000
commitc5f280e20a8e3ecd5f016b8fb34a436588915ed2 (patch)
tree25b88641a63e7f81b13f7e32f958ad4cec4bc973 /test/confs/4009
parent84547130ee72174d019f557dcbc3b0cf42c5ac80 (diff)
Support Rspamd. Patch from Andrew Lewis, lightly editorialised
by JH. Bug 1573
Diffstat (limited to 'test/confs/4009')
-rw-r--r--test/confs/400937
1 files changed, 37 insertions, 0 deletions
diff --git a/test/confs/4009 b/test/confs/4009
new file mode 100644
index 000000000..b635195b6
--- /dev/null
+++ b/test/confs/4009
@@ -0,0 +1,37 @@
+# Exim test configuration 4009
+# Content-scan: spamassassin interface
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+primary_hostname = myhost.test.ex
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+log_selector = +subject
+
+spamd_address = 127.0.0.1 7833
+
+# ----- Main settings -----
+
+acl_smtp_rcpt = accept
+acl_smtp_data = c_data
+
+begin acl
+
+c_data:
+ warn
+ spam = nobody
+ warn
+ log_message = $spam_action $spam_report
+ accept
+
+# ----- Routers -----
+
+begin routers
+
+r:
+ driver = redirect
+ data = :blackhole:
+
+# End