summaryrefslogtreecommitdiff
path: root/test/confs
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2018-01-26 18:40:41 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2018-01-26 20:05:56 +0000
commitf83a760f108f79279c210e208bb02c270569a951 (patch)
tree0e0e5540ae4296f6bae8d555397363b09fdd5548 /test/confs
parent06fdb9f73dedfffc8b8613017ec1bb23f970b246 (diff)
Cutthrough: fix for port-number defined by router. Bug 2229
Diffstat (limited to 'test/confs')
-rw-r--r--test/confs/540752
1 files changed, 52 insertions, 0 deletions
diff --git a/test/confs/5407 b/test/confs/5407
new file mode 100644
index 000000000..0d41b0b7d
--- /dev/null
+++ b/test/confs/5407
@@ -0,0 +1,52 @@
+# Exim test configuration 5407
+
+# any options on the cutthrough_delivery control
+CONTROL=
+
+# optional verify-callout
+OPT=
+
+.include DIR/aux-var/std_conf_prefix
+
+primary_hostname = myhost.test.ex
+
+log_selector = +received_recipients
+queue_only
+
+# ----- Main settings -----
+
+domainlist local_domains = test.ex : *.test.ex
+
+acl_smtp_rcpt = ar
+
+
+# ----- ACLs -----
+
+begin acl
+
+ar:
+ accept
+ control = cutthrough_deliveryCONTROL
+ OPT
+ logwrite = rcpt for $local_part@$domain
+
+# ----- Routers -----
+
+begin routers
+
+all:
+ driver = manualroute
+ domains = ! +local_domains
+ route_list = * 127.0.0.1::PORT_S
+ self = send
+ transport = smtp
+
+
+# ----- Transports -----
+
+begin transports
+
+smtp:
+ driver = smtp
+
+# End