TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0483
1 # Exim test configuration 0483
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = a1
15
16 queue_only
17
18 # ----- ACL -----
19
20 begin acl
21
22 a1:
23 require recipients = lsearch;DIR/aux-fixed/TESTNUM.list
24 require senders = lsearch;DIR/aux-fixed/TESTNUM.list
25 warn log_message = sender_data=$sender_data recipient_data=$recipient_data
26 require verify = recipient
27 accept
28
29
30 # ----- Routers -----
31
32 begin routers
33
34 r1:
35 driver = accept
36 senders = lsearch;DIR/aux-fixed/TESTNUM.list
37 debug_print = sender_data=$sender_data
38 transport = t1
39
40
41 # ----- Transports -----
42
43 begin transports
44
45 t1:
46 driver = appendfile
47 file = /dev/null
48 user = CALLER
49
50 # End