TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 3206
CommitLineData
afda344b
PH
1# Exim test configuration 3206
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6qualify_domain = test.ex
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
15domainlist local_domains = test.ex : !*.remote.ex : testdb;defer
16
17hold_domains = !test.ex : hold.remote.ex : !*.go.remote.ex : testdb;defer
18queue_domains = !test.ex : queue.go.remote.ex : testdb;defer
19
20
21# ----- Routers -----
22
23begin routers
24
25fail_remote_domains:
26 driver = redirect
27 domains = ! +local_domains
28 data = :fail: unrouteable mail domain "$domain"
29
30all:
31 driver = accept
32 retry_use_local_part
33 transport = local_delivery
34
35
36# ----- Transports -----
37
38begin transports
39
40local_delivery:
41 driver = appendfile
42 envelope_to_add
43 file = DIR/test-mail/$local_part
44 user = CALLER
45
46
47# ----- Retry -----
48
49
50begin retry
51
52* * F,1h,10m
53
54
55# End