summaryrefslogtreecommitdiff
path: root/test/confs/0593
diff options
context:
space:
mode:
Diffstat (limited to 'test/confs/0593')
-rw-r--r--test/confs/059340
1 files changed, 40 insertions, 0 deletions
diff --git a/test/confs/0593 b/test/confs/0593
new file mode 100644
index 000000000..439374e82
--- /dev/null
+++ b/test/confs/0593
@@ -0,0 +1,40 @@
+# Exim test configuration 0593
+
+.include DIR/aux-var/std_conf_prefix
+
+
+# ----- Main settings -----
+
+domainlist local_domains = @
+
+acl_smtp_rcpt = check_recipient
+trusted_users = CALLER
+
+
+# ----- ACL -----
+
+begin acl
+
+check_recipient:
+ accept hosts = :
+ accept domains = +local_domains
+ deny message = relay not permitted
+
+# ----- Routers -----
+
+begin routers
+
+localuser:
+ driver = accept
+ check_local_user
+ transport = local_delivery
+
+# ----- Transports -----
+
+begin transports
+
+local_delivery:
+ driver = appendfile
+ file = DIR/test-mail/$local_part
+
+# End