summaryrefslogtreecommitdiff
path: root/test/confs/0462
diff options
context:
space:
mode:
Diffstat (limited to 'test/confs/0462')
-rw-r--r--test/confs/046258
1 files changed, 58 insertions, 0 deletions
diff --git a/test/confs/0462 b/test/confs/0462
new file mode 100644
index 000000000..31560b90f
--- /dev/null
+++ b/test/confs/0462
@@ -0,0 +1,58 @@
+# Exim test configuration 0462
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+primary_hostname = myhost.test.ex
+rfc1413_query_timeout = 0s
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+domainlist local_domains = test.ex
+
+acl_smtp_rcpt = $local_part
+smtp_return_error_details
+
+# ----- ACL -----
+
+begin acl
+
+checkpm:
+ deny !verify = sender/callout=postmaster
+ accept
+
+nocheckpm:
+ deny !verify = sender/callout
+ accept
+
+# ----- Routers -----
+
+begin routers
+
+all:
+ driver = manualroute
+ route_list = * 127.0.0.1
+ self = send
+ transport = smtp
+
+
+# ----- Transports -----
+
+begin transports
+
+smtp:
+ driver = smtp
+ port = PORT_S
+
+
+# ----- Retry -----
+
+begin retry
+
+* * F,5d,10s
+
+
+# End