TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0604
CommitLineData
a39bd74d
JB
1# Exim test configuration 0604
2# Send many messages in hopes of tripping continuation records code
3
4hostlist loopback = <; 127.0.0.0/8 ; 0.0.0.0 ; ::1 ; 0000:0000:0000:0000:0000:ffff
5untrusted_set_sender = *
6
7SERVER =
8
9exim_path = EXIM_PATH
10host_lookup_order = bydns
11#primary_hostname = myhost.test.ex
12rfc1413_query_timeout = 0s
13spool_directory = DIR/spool
14log_file_path = DIR/spool/log/SERVER%slog
15log_selector = +sender_on_delivery
16gecos_pattern = ""
17gecos_name = CALLER_NAME
23f3dc67 18tls_advertise_hosts =
a39bd74d
JB
19
20# ----- Main settings -----
21
22acl_smtp_rcpt = accept
23
24queue_only
25queue_run_in_order
26
27# ----- Routers -----
28
29begin routers
30
31client:
32 driver = accept
33 condition = ${if eq {SERVER}{server}{no}{yes}}
34 transport = send_to_server
35
36server:
37 driver = accept
38 transport = send_to_server
39
40
41# ----- Transports -----
42
43begin transports
44
45send_to_server:
46 driver = smtp
47 connection_max_messages = 0
48 allow_localhost
49 hosts = 127.0.0.1
50 port = PORT_D
51 interface = ${if eq {$sender_address_domain}{dustybelt.tld} {127.0.0.1}{127.0.0.2}}
52
53# ----- Retry -----
54
55begin retry
56
57* * F,5d,10s
58
59# End
60