Fix CVE-2016-1531
[exim.git] / test / confs / 0548
CommitLineData
8852dff2
PH
1# Exim test configuration 0548
2
3SERVER=
4
5exim_path = EXIM_PATH
bc3c7bb7 6keep_environment =
8852dff2 7host_lookup_order = bydns
8852dff2
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
23f3dc67 12tls_advertise_hosts =
8852dff2
PH
13
14# ----- Main settings -----
15
16acl_smtp_connect = acl_connect
17acl_smtp_rcpt = acl_rcpt
18qualify_domain = test.ex
273f34d0 19queue_run_in_order
8852dff2
PH
20
21
22# ----- ACLs -----
23
24begin acls
25
26acl_connect:
27 defer message = host deferred
28 hosts = thishost.test.ex
29 accept
30
31acl_rcpt:
32 defer message = Recipient deferred
33
34
35# ----- Routers -----
36
37begin routers
38
39smarthost:
40 driver = accept
41 transport = smtp
42
43
44# ----- Transports -----
45
46begin transports
47
48smtp:
49 driver = smtp
50 hosts = HOSTIPV4 : thishost.test.ex
51 allow_localhost
52 port = PORT_D
53
54
55# ----- Retry -----
56
57begin retry
58
f6f261e6 59thishost.test.ex * F,20s,2s
8852dff2
PH
60* * F,1s,1s; F,1s,5s
61
62# End