TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 5400
... / ...
CommitLineData
1# Exim test configuration 5400
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10tls_advertise_hosts =
11
12log_selector = +received_recipients
13
14# ----- Main settings -----
15
16domainlist local_domains = test.ex : *.test.ex
17
18acl_smtp_rcpt = ar
19
20
21# ----- ACLs -----
22
23begin acl
24
25ar:
26 accept control = cutthrough_delivery
27 logwrite = rcpt for $local_part@$domain
28
29# ----- Routers -----
30
31begin routers
32
33dns:
34 driver = dnslookup
35 domains = localhost.test.ex : localhost4.test.ex : thishost.test.ex
36 self = send
37 transport = smtp
38
39all:
40 driver = manualroute
41 domains = ! +local_domains
42 route_list = special.com HOSTIPV4 ; * 127.0.0.1
43 self = send
44 transport = ${if eq {special_tpt}{$local_part} {smtp2}{smtp}}
45 headers_remove = X-hdr-rtr
46 headers_add = X-hdr-rtr-new: $h_X-hdr-rtr:+++
47 no_more
48
49
50# ----- Transports -----
51
52begin transports
53
54smtp:
55 driver = smtp
56 interface = HOSTIPV4
57 port = PORT_S
58 headers_add = ${if def:h_X-hdr-rtr {X-hdr-tpt-new: new} {}}
59
60smtp2:
61 driver = smtp
62 interface = HOSTIPV4
63 port = PORT_S
64
65
66# End