TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0473
1 # Exim test configuration 0473
2
3 USE_SENDER = ,use_sender
4 ACL_RCPT = acl_rcpt
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12 tls_advertise_hosts =
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = ACL_RCPT
17 callout_random_local_part = $primary_hostname--testing
18 trusted_users = CALLER
19
20
21 # ----- ACL -----
22
23 begin acl
24
25 acl_rcpt:
26   accept   verify  = recipient/callout=1sUSE_SENDER
27
28 acl_rcpt_sender:
29   accept   verify  = sender/callout=1s,connect=2s
30
31
32 # ----- Routers -----
33
34 begin routers
35
36 callout:
37   driver = manualroute
38   transport = smtp
39   route_data = 127.0.0.1
40   self = send
41
42
43 # ----- Transports -----
44
45 begin transports
46
47 smtp:
48   driver = smtp
49   port = PORT_S
50
51 # End