TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0294
CommitLineData
afda344b
PH
1# Exim test configuration 0294
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11trusted_users = CALLER
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = deny local_parts = reject\n accept
16
17smtp_ratelimit_mail = 1,1s,5,2s
18smtp_ratelimit_rcpt = 1, 0.25s, 1.05, 1s
19smtp_ratelimit_hosts = : V4NET.9.8.7
20
21
22# ------ Routers ------
23
24begin routers
25
26r1:
27 driver = accept
28 transport = t1
29
30
31# ------ Transports ------
32
33begin transports
34
35t1:
36 driver = appendfile
37 file = /dev/null
38 user = CALLER
39
40# End