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