summaryrefslogtreecommitdiff
path: root/test/confs
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2015-06-08 21:48:50 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2015-06-08 22:50:21 +0100
commitae9d18bce985de6ff806c167059ffdd554278882 (patch)
treedee65199fe465856eec10ea889cc79b483aaf696 /test/confs
parent7da3cb7c81fbe0ae154b2b5f89f79dc80264f699 (diff)
Truncate delay when peer closes connection. Bug 348
This is now possible on Linux, at least.
Diffstat (limited to 'test/confs')
-rw-r--r--test/confs/060947
1 files changed, 47 insertions, 0 deletions
diff --git a/test/confs/0609 b/test/confs/0609
new file mode 100644
index 000000000..d6ac511fd
--- /dev/null
+++ b/test/confs/0609
@@ -0,0 +1,47 @@
+# Exim test configuration 0609
+# Long ACL delays
+
+SERVER=
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+primary_hostname = myhost.test.ex
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/SERVER%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+disable_ipv6 = true
+
+acl_smtp_rcpt = delay4_accept
+log_selector = +smtp_connection
+#hosts_connection_nolog = : 127.0.0.1
+
+
+# ----- ACLs -----
+
+begin acl
+
+delay4_accept:
+ accept delay = 4s
+
+# ----- Routers -----
+
+begin routers
+
+accept:
+ driver = accept
+ transport = appendfile
+
+# ----- Transports -----
+
+begin transports
+
+appendfile:
+ driver = appendfile
+ file = DIR/test-mail/$local_part
+ user = CALLER
+
+# End