summaryrefslogtreecommitdiff
path: root/test/confs/4700
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2015-11-01 19:46:28 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2015-11-08 16:19:46 +0000
commit23f3dc67a13f71bb8fdf2930052d3fdce85e9774 (patch)
tree780d7e88f9c996c1889d25a7d228d3864d620a33 /test/confs/4700
parentd658adda50d19b00d2242c0f9162ab510ecda799 (diff)
TLS: Default tls_advertise_hosts to "*". Bug 1709
Make the option available in non-TLS builds, and clear in testsuite confs as needed to keep TLS and non-TLS testcase outputs the same. An error is logged at startup if tls_advertise_hosts is nonempty but tls_certificate is not set.
Diffstat (limited to 'test/confs/4700')
-rw-r--r--[l---------]test/confs/470073
1 files changed, 72 insertions, 1 deletions
diff --git a/test/confs/4700 b/test/confs/4700
index bf798671f..6a532b6a0 120000..100644
--- a/test/confs/4700
+++ b/test/confs/4700
@@ -1 +1,72 @@
-0211 \ No newline at end of file
+# Exim test configuration 0211
+
+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
+tls_advertise_hosts =
+
+# ----- Main settings -----
+
+domainlist local_domains = test.ex
+
+acl_smtp_rcpt = check_recipient
+
+log_selector = +sender_on_delivery
+qualify_domain = test.ex
+
+
+# ----- ACLs -----
+
+begin acl
+
+check_recipient:
+ accept hosts = :
+ accept domains = +local_domains
+ deny message = relay not permitted
+
+
+# ----- Routers -----
+
+begin routers
+
+others:
+ driver = manualroute
+ domains = ! +local_domains
+ route_list = * localhost4.test.ex byname
+ self = send
+ transport = smtp
+ no_more
+
+all:
+ driver = accept
+ retry_use_local_part
+ transport = local_delivery
+
+
+# ----- Transports -----
+
+begin transports
+
+smtp:
+ driver = smtp
+ port = PORT_S
+
+local_delivery:
+ driver = appendfile
+ file = DIR/test-mail/$local_part
+ return_path_add
+ user = CALLER
+
+
+# ----- Retry -----
+
+
+begin retry
+
+* * F,5d,8h
+
+
+# End