TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0099
1 # Exim test configuration 0099
2
3 RETRY =
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
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 primary_hostname = primary.test.ex
16 qualify_domain = test.ex
17 retry_data_expire = 2s
18 log_selector = +received_recipients
19
20
21 # ----- Routers -----
22
23 begin routers
24
25 bydns:
26 driver = dnslookup
27 domains = mxt2.test.ex
28 transport = smtp
29 fail_defer_domains = *
30
31 all:
32 driver = manualroute
33 route_list = simple thishost.test.ex byname \
34 ; complex thisloop.test.ex byname \
35 ; nonexist nonexist.test.ex byname \
36 ; * 127.0.0.1 byname
37 self = send
38 host_find_failed = defer
39 transport = smtp
40
41
42 # ----- Transports -----
43
44 begin transports
45
46 smtp:
47 driver = smtp
48 port = 999
49 RETRY
50
51
52 # ----- Retry -----
53
54 begin retry
55
56 * * senders=: G,1d,1m,1.5
57 * * senders = "a@b.c : d@e.f" G,2d,2m,1.5
58
59 rcpt45x.test.ex rcpt_45x F,10d,2m
60 rcpt463.test.ex rcpt_463 F,10d,3m
61 rcpt4xx.test.ex rcpt_4xx F,10d,1m
62 * lookup F,10d,30m
63
64 *@\N^\d * F,5d,1m
65 *@*.abcd.ex * F,5d,2m
66 *@literal.ex * F,5d,3m
67 *@lsearch;DIR/aux-fixed/TESTNUM.rlist2 * F,5d,4m
68 *@@[] * F,5d,5m
69 *@@ * F,5d,6m
70 lsearch*@;DIR/aux-fixed/TESTNUM.rlist * F,1d,3m
71 *.star.ex * F,3d,10m
72 !*.not.ex * F,2d,15m
73 * * F,12d,150m
74
75 # End