More new test committing.
[exim.git] / test / confs / 0410
diff --git a/test/confs/0410 b/test/confs/0410
new file mode 100644 (file)
index 0000000..b8da514
--- /dev/null
@@ -0,0 +1,62 @@
+# Exim test configuration 0410
+
+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 -----
+
+primary_hostname = mail.test.ex
+qualify_domain = test.ex
+
+acl_smtp_rcpt = rcpt
+
+
+# ----- ACL -----
+
+begin ACL
+
+rcpt:
+  accept verify = recipient
+         verify = sender
+         condition = ${if eq {$address_data}{ADDRESS_DATA_STRING}{yes}{no}}
+         condition = ${if eq {$sender_address_data}{SENDER_ADDRESS_DATA_STRING}{yes}{no}}
+
+
+# ----- Routers -----
+
+begin routers
+
+r1:
+  driver = redirect
+  local_parts = orig
+  data = child@test.ex
+
+r2:
+  driver = accept
+  local_parts = child
+  address_data = ADDRESS_DATA_STRING
+  transport = t1
+
+r3:
+  driver = accept
+  local_parts = oksender
+  address_data = SENDER_ADDRESS_DATA_STRING
+  transport = t1
+
+
+# ----- Transports -----
+
+begin transports
+
+t1:
+  driver = appendfile
+  file = /dev/null
+  user = CALLER
+
+
+# End