summaryrefslogtreecommitdiff
path: root/test/confs/4201
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2015-04-12 19:18:26 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2015-04-12 19:18:26 +0100
commit9d4319dfec653f43b64562c8f31b87f2890365b2 (patch)
treed802b3bead87f49346fbac74e774f5faf61dbc74 /test/confs/4201
parent4e08fd50ebe820edb008a96b892a2749bbe8e72b (diff)
smtp input
Diffstat (limited to 'test/confs/4201')
-rw-r--r--test/confs/420160
1 files changed, 60 insertions, 0 deletions
diff --git a/test/confs/4201 b/test/confs/4201
new file mode 100644
index 000000000..7d9af4bf3
--- /dev/null
+++ b/test/confs/4201
@@ -0,0 +1,60 @@
+# Exim test configuration 4201
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+domainlist local_domains = test.ex
+
+acl_smtp_rcpt = check_recipient
+trusted_users = CALLER
+log_selector = +received_recipients
+
+queue_only
+queue_run_in_order
+
+smtputf8_advertise_hosts = *
+
+
+# ----- ACL -----
+
+begin acl
+
+check_recipient:
+ accept hosts = :
+ accept domains = +local_domains
+ deny message = relay not permitted
+
+# ----- Routers -----
+
+begin routers
+
+fail_remote_domains:
+ driver = redirect
+ domains = ! +local_domains
+ data = :fail: unrouteable mail domain "$domain"
+
+localuser:
+ driver = redirect
+ data = :blackhole:
+
+# ----- Transports -----
+
+begin transports
+
+local_delivery:
+ driver = appendfile
+ delivery_date_add
+ envelope_to_add
+ file = DIR/test-mail/$local_part
+ headers_add = "X-body-linecount: $body_linecount\n\
+ X-message-linecount: $message_linecount\n\
+ X-received-count: $received_count"
+ return_path_add
+
+# End