summaryrefslogtreecommitdiff
path: root/test/confs/1104
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2021-01-21 13:06:31 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2021-01-21 17:33:35 +0000
commit0240e7a160721a53365aaa3bd10bb6f3de3f9f15 (patch)
tree6ad59913243585bc5dc451b22063f3ffcba195cd /test/confs/1104
parent4718c75d346777872c87ff7d4fe0431487e618c4 (diff)
Testsuite: TLS server testcase consolidation
Diffstat (limited to 'test/confs/1104')
-rw-r--r--test/confs/110451
1 files changed, 51 insertions, 0 deletions
diff --git a/test/confs/1104 b/test/confs/1104
new file mode 100644
index 000000000..cdb3d0fc2
--- /dev/null
+++ b/test/confs/1104
@@ -0,0 +1,51 @@
+# Exim test configuration 1104
+
+.include DIR/aux-var/tls_conf_prefix
+
+primary_hostname = myhost.test.ex
+
+# ----- Main settings -----
+
+acl_smtp_rcpt = check_recipient
+hostlist tls_hosts = 127.0.0.1
+
+queue_only
+queue_run_in_order
+
+tls_certificate = DIR/aux-fixed/cert1
+tls_privatekey = DIR/aux-fixed/cert1
+
+tls_advertise_hosts = 127.0.0.1 : HOSTIPV4
+
+# ----- ACL -----
+
+begin acl
+
+check_recipient:
+ deny hosts = +tls_hosts
+ message = encryption required
+ !encrypted = *
+ accept
+
+
+# ----- Routers -----
+
+begin routers
+
+abc:
+ driver = accept
+ retry_use_local_part
+ transport = local_delivery
+
+
+# ----- Transports -----
+
+begin transports
+
+local_delivery:
+ driver = appendfile
+ file = DIR/test-mail/${bless:$local_part}
+ headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
+ user = CALLER
+
+# End