More new test committing.
[exim.git] / test / confs / 5207
diff --git a/test/confs/5207 b/test/confs/5207
new file mode 100644 (file)
index 0000000..73e5ee4
--- /dev/null
@@ -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