TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0455
CommitLineData
afda344b
PH
1# Exim test configuration 0455
2
3HOSTS_MAX_TRY=4
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15acl_not_smtp = non
16
17ignore_bounce_errors_after = 0s
18qualify_domain = test.ex
f3d7df6c 19disable_ipv6
afda344b
PH
20
21
22# ----- ACLs -----
23
24begin acl
25
26non:
27 warn senders = :
28 control = queue_only
29 accept
30
31
32# ----- Routers -----
33
34begin routers
35
36r1:
37 driver = dnslookup
38 transport = smtp
39
40
41# ----- Transports -----
42
43begin transports
44
45smtp:
46 driver = smtp
47 connect_timeout = 1s
48 hosts_max_try = HOSTS_MAX_TRY
49
50
51# ----- Retry -----
52
53begin retry
54
55* * F,2s,1s
56
57# End