TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0288
1 # Exim test configuration 0288
2 # serialize_hosts option on smtp transport
3
4 exim_path = EXIM_PATH
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 qualify_domain = test.ex
16 queue_run_in_order
17 remote_max_parallel = 2
18
19
20 # ----- Routers -----
21
22 begin routers
23
24 all:
25   driver = manualroute
26   route_list = * 127.0.0.1
27   self = send
28   transport = smtp
29
30
31 # ----- Transports -----
32
33 begin transports
34
35 smtp:
36   driver = smtp
37   port = PORT_S
38   max_rcpt = 1
39   connection_max_messages = 1
40   serialize_hosts = 127.0.0.1
41
42
43 # ----- Retry -----
44
45
46 begin retry
47
48 * * F,1h,10m
49
50
51 # End