Additional tests - didn't show any problems.
[exim.git] / test / confs / 0548
diff --git a/test/confs/0548 b/test/confs/0548
new file mode 100644 (file)
index 0000000..18ef2ab
--- /dev/null
@@ -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