summaryrefslogtreecommitdiff
path: root/test/confs/1090
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2021-01-21 12:23:41 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2021-01-21 14:26:52 +0000
commit4718c75d346777872c87ff7d4fe0431487e618c4 (patch)
treeca6b881e475a5f807e3b61b4160da5c9563f2033 /test/confs/1090
parentc2decce2cb31c21601da988ef6ef02bec9073bdd (diff)
Testsuite: shuffling
Diffstat (limited to 'test/confs/1090')
-rw-r--r--test/confs/109048
1 files changed, 48 insertions, 0 deletions
diff --git a/test/confs/1090 b/test/confs/1090
new file mode 100644
index 000000000..4a7b25f3c
--- /dev/null
+++ b/test/confs/1090
@@ -0,0 +1,48 @@
+# Exim test configuration 1090
+# TCP Fast Open
+
+SERVER=
+
+.include DIR/aux-var/std_conf_prefix
+
+primary_hostname = myhost.test.ex
+
+# ----- Main settings -----
+
+acl_smtp_rcpt = accept
+log_selector = +received_recipients +millisec
+
+# ----- Routers -----
+
+begin routers
+
+server:
+ driver = redirect
+ condition = ${if eq {SERVER}{server} {yes}{no}}
+ data = :blackhole:
+
+client:
+ driver = accept
+ condition = ${if eq {SERVER}{server}{no}{yes}}
+ transport = send_to_server
+
+
+# ----- Transports -----
+
+begin transports
+
+send_to_server:
+ driver = smtp
+ allow_localhost
+ hosts = 127.0.0.1
+ port = PORT_D
+ hosts_try_fastopen = *
+
+# ----- Retry -----
+
+begin retry
+
+* * F,5d,10s
+
+
+# End