summaryrefslogtreecommitdiff
path: root/test/confs/0628
diff options
context:
space:
mode:
Diffstat (limited to 'test/confs/0628')
-rw-r--r--test/confs/062834
1 files changed, 34 insertions, 0 deletions
diff --git a/test/confs/0628 b/test/confs/0628
new file mode 100644
index 000000000..4369f5a99
--- /dev/null
+++ b/test/confs/0628
@@ -0,0 +1,34 @@
+# Exim test configuration 0628
+
+.include DIR/aux-var/std_conf_prefix
+
+primary_hostname = myhost.test.ex
+
+# ----- Main settings -----
+
+acl_smtp_mail = chk_mail
+acl_smtp_rcpt = chk_rcpt
+acl_smtp_data = chk_data
+
+# ----- ACL -----
+
+begin acl
+
+chk_mail:
+ accept control = debug/tag=_1
+
+chk_rcpt:
+ accept control = debug/kill
+
+chk_data:
+ accept control = debug/tag=_2/opts=+all
+
+
+# ----- Routers -----
+
+begin routers
+
+r1:
+ driver = redirect
+ data = :blackhole:
+# End