summaryrefslogtreecommitdiff
path: root/test/confs/5902
diff options
context:
space:
mode:
authorAndrew Colin Kissa <andrew@topdog.za.net>2016-10-15 18:33:31 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2016-10-15 18:33:31 +0100
commit3369a853fbc0fe454ac65fef7adf7e51845ff6a2 (patch)
tree88661c1de89b0e2e7fb5a15efbadbf35f34f0607 /test/confs/5902
parent4e192008ab7db2b7b9f157bba50f71a46e1a0cd9 (diff)
New: queuefile transport, under EXPERIMENTAL_QUEUEFILE
Diffstat (limited to 'test/confs/5902')
-rw-r--r--test/confs/590254
1 files changed, 54 insertions, 0 deletions
diff --git a/test/confs/5902 b/test/confs/5902
new file mode 100644
index 000000000..e7dad63a7
--- /dev/null
+++ b/test/confs/5902
@@ -0,0 +1,54 @@
+# Exim test configuration 5902
+
+.include DIR/aux-var/std_conf_prefix
+
+
+# ----- Main settings -----
+
+qualify_domain = test.ex
+acl_smtp_rcpt = rcpt
+
+# ----- ACLs -----
+
+begin acl
+
+rcpt:
+ accept
+ queue = ${if eq {normal}{$local_part} {} {$local_part}}
+ logwrite = using queue '$queue_name'
+
+# ----- Routers -----
+
+begin routers
+
+local:
+ driver = accept
+ transport = local_delivery
+ condition = ${if eq {}{$queue_name} {1}{0}}
+
+scan:
+ driver = accept
+ transport = scan
+
+
+# ----- Transports -----
+
+begin transports
+
+scan:
+ driver = queuefile
+ directory = DIR/aux-fixed/5902/outbound
+
+local_delivery:
+ driver = appendfile
+ file = DIR/test-mail/$local_part
+ user = CALLER
+
+# ----- Retry -----
+
+begin retry
+
+* * F,10m,2d
+
+
+# End