More new test committing.
[exim.git] / test / confs / 0113
diff --git a/test/confs/0113 b/test/confs/0113
new file mode 100644 (file)
index 0000000..c3f63d0
--- /dev/null
@@ -0,0 +1,65 @@
+# Exim test configuration 0113
+
+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 -----
+
+acl_smtp_rcpt = check_recipient
+acl_smtp_data = check_message
+
+domainlist local_domains = test.ex
+qualify_domain = test.ex
+
+
+# ----- Routers -----
+
+begin routers
+
+deliver:
+  driver = accept
+  condition = ${if eq{$original_local_part}{second}{yes}{no}}
+  retry_use_local_part
+  transport = appendfile
+
+first:
+  driver = redirect
+  no_check_local_user
+  file = DIR/aux-fixed/TESTNUM.forward
+  forbid_file
+  forbid_pipe
+  local_parts = first
+  one_time
+  retry_use_local_part
+
+second:
+  driver = redirect
+  allow_defer
+  data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
+  retry_use_local_part
+
+
+# ----- Transports -----
+
+begin transports
+
+appendfile:
+  driver = appendfile
+  file = DIR/test-mail/$local_part
+  user = CALLER
+
+
+# ----- Retry -----
+
+
+begin retry
+
+* * F,5d,1d
+
+
+# End