summaryrefslogtreecommitdiff
path: root/test/confs/0548
diff options
context:
space:
mode:
Diffstat (limited to 'test/confs/0548')
-rw-r--r--test/confs/054860
1 files changed, 60 insertions, 0 deletions
diff --git a/test/confs/0548 b/test/confs/0548
new file mode 100644
index 000000000..18ef2abdd
--- /dev/null
+++ b/test/confs/0548
@@ -0,0 +1,60 @@
+# Exim test configuration 0548
+
+SERVER=
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+rfc1413_query_timeout = 0s
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/SERVER%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+acl_smtp_connect = acl_connect
+acl_smtp_rcpt = acl_rcpt
+qualify_domain = test.ex
+
+
+# ----- ACLs -----
+
+begin acls
+
+acl_connect:
+ defer message = host deferred
+ hosts = thishost.test.ex
+ accept
+
+acl_rcpt:
+ defer message = Recipient deferred
+
+
+# ----- Routers -----
+
+begin routers
+
+smarthost:
+ driver = accept
+ transport = smtp
+
+
+# ----- Transports -----
+
+begin transports
+
+smtp:
+ driver = smtp
+ hosts = HOSTIPV4 : thishost.test.ex
+ allow_localhost
+ port = PORT_D
+
+
+# ----- Retry -----
+
+begin retry
+
+thishost.test.ex * F,15s,1s
+* * F,1s,1s; F,1s,5s
+
+# End