TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 9001
CommitLineData
afda344b
PH
1# Exim test configuration 9001
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14
15# ----- Routers -----
16
17begin routers
18
19r0:
20 driver = accept
21 senders = :
22 transport = t1
23
24r1:
25 driver = redirect
26 data = ${lookup ldap user="cn=xxx,o=yyy,c=UK" pass="secret" \
27 ldap:///o=zzz,c=UK,?sn?sub?(cn=foo)}}
28
29
30# ----- Transports -----
31
32begin transports
33
34t1:
35 driver = appendfile
36 file = DIR/test-mail/$local_part
37 user = CALLER
38
39
40# End