summaryrefslogtreecommitdiff
path: root/test/confs/0425
diff options
context:
space:
mode:
Diffstat (limited to 'test/confs/0425')
-rw-r--r--test/confs/042548
1 files changed, 48 insertions, 0 deletions
diff --git a/test/confs/0425 b/test/confs/0425
new file mode 100644
index 000000000..73e3fb81b
--- /dev/null
+++ b/test/confs/0425
@@ -0,0 +1,48 @@
+# Exim test configuration 0425
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+rfc1413_query_timeout = 0s
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+primary_hostname = mail.test.ex
+qualify_domain = test.ex
+
+acl_smtp_rcpt = a1
+
+
+# ----- ACLs -----
+
+begin acl
+
+a1:
+ warn !verify = recipient
+ warn verify = sender
+
+ accept
+
+
+# ----- Routers -----
+
+begin routers
+
+r1:
+ driver = accept
+ local_parts = ok
+ transport = t1
+
+
+# ----- Transports -----
+
+begin transports
+
+t1:
+ driver = smtp
+
+
+# End