summaryrefslogtreecommitdiff
path: root/test/confs/5207
diff options
context:
space:
mode:
Diffstat (limited to 'test/confs/5207')
-rw-r--r--test/confs/520756
1 files changed, 56 insertions, 0 deletions
diff --git a/test/confs/5207 b/test/confs/5207
new file mode 100644
index 000000000..73e5ee499
--- /dev/null
+++ b/test/confs/5207
@@ -0,0 +1,56 @@
+# Exim test configuration 5207
+
+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 -----
+
+qualify_domain = test.ex
+
+# ----- Transports -----
+
+begin transports
+
+t1:
+ driver = appendfile
+ file = DIR/test-mail/${if eq{$address_data}{}{$local_part}{$address_data}}
+ user = CALLER
+
+# ----- Routers -----
+
+begin routers
+
+# Delivered without changing address_data
+
+nodata:
+ driver = accept
+ local_parts = nodata
+ transport = t1
+
+r6:
+ driver = queryprogram
+ domains = r6
+ address_data = qpgm
+ command = /bin/echo ACCEPT transport=t1
+ command_user = nobody
+
+r7:
+ driver = queryprogram
+ domains = r7
+ address_data = qpgm
+ command = /bin/echo redirect nodata@test.ex
+ command_user = nobody
+
+# ----- Retry -----
+
+begin retry
+
+* * F,5d,5m
+
+# End