TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0131
CommitLineData
afda344b
PH
1# Exim test configuration 0131
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
23f3dc67 9tls_advertise_hosts =
afda344b
PH
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex
14qualify_domain = test.ex
15
16
17# ----- Routers -----
18
19begin routers
20
21islocal:
22 driver = manualroute
23 domains = ! +local_domains
24 route_list = * localhost byname
25 self = pass
26 no_more
27 address_data = $address_data-islocal
28
29forward:
30 driver = redirect
31 allow_filter
32 no_check_local_user
33 file = DIR/aux-fixed/TESTNUM.$local_part
34 retry_use_local_part
35 user = CALLER
36 address_data = $address_data-forward
37
38local:
39 driver = accept
40 retry_use_local_part
41 transport = appendfile
42 address_data = $address_data-local
43
44
45# ----- Transports -----
46
47begin transports
48
49appendfile:
50 driver = appendfile
51 file = DIR/test-mail/$local_part
52 user = CALLER
53 headers_add = Address-Data: >$address_data<
54
55
56# ----- Retry -----
57
58
59begin retry
60
61* * F,1d,15m
62
63
64# End