More new test committing.
[exim.git] / test / confs / 0359
diff --git a/test/confs/0359 b/test/confs/0359
new file mode 100644 (file)
index 0000000..c24f6f1
--- /dev/null
@@ -0,0 +1,49 @@
+# Exim test configuration 0359
+
+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 -----
+
+qualify_domain = test.ex
+
+
+# ----- Routers -----
+
+begin routers
+
+r1:
+  driver = accept
+  transport = t1
+
+
+# ----- Transports -----
+
+begin transports
+
+t1:
+  driver = appendfile
+  file = /dev/null
+  shadow_transport = t2
+  shadow_condition = ${if eq{$local_part}{userx}{yes}{no}}
+  user = CALLER
+
+t2:
+  driver = appendfile
+  file = DIR/test-mail/$local_part
+  headers_add = X-shadowed:
+  user = CALLER
+
+
+# ----- Retry -----
+
+begin retry
+
+*   *   F,3s,1s; G,1h,2s,2
+
+# End