TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 0552
CommitLineData
047bdd8c
PH
1# Exim test configuration 0552
2
3DDF=
4SERVER=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
047bdd8c
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
23f3dc67 13tls_advertise_hosts =
047bdd8c
PH
14
15# ----- Main settings -----
16
17acl_not_smtp = check_not
18acl_smtp_connect = check_connect
19acl_smtp_rcpt = check_rcpt
20
21queue_only
22
23# ----- ACL -----
24
25begin ACL
26
27check_connect:
28 accept DDF
29
30check_rcpt:
31 accept delay = 1s
32
33check_not:
34 accept delay = 1s
35 logwrite = Accept non-SMTP
36
37
38# ----- Routers -----
39
40begin routers
41
42r1:
43 driver = accept
44 transport = t1
45
46
47# ----- Transports -----
48
49begin transports
50
51t1:
52 driver = smtp
30079bc1 53 port = PORT_D
7eb59ff9 54 hosts = 127.0.0.1
047bdd8c
PH
55 allow_localhost
56 command_timeout = 2s
57
58
59# ----- Retry -----
60
61begin retry
62
63* * F,1d,1s
64
65
66# End