Fix CVE-2016-1531
[exim.git] / test / confs / 0553
CommitLineData
4c590bd1
PH
1# Exim test configuration 0553
2
3DCF =
4SERVER =
5
6exim_path = EXIM_PATH
bc3c7bb7 7keep_environment =
4c590bd1
PH
8host_lookup_order = bydns
9primary_hostname = myhost.test.ex
4c590bd1
PH
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
23f3dc67 14tls_advertise_hosts =
4c590bd1
PH
15
16# ----- Main settings -----
17
18acl_smtp_rcpt = check_recipient
19
20queue_only
21
22# ----- ACL -----
23
24begin acl
25
26check_recipient:
27 # Callouts accepted with a delay
28 accept senders = :
29 delay = 1s
30
31 # Non-callouts do the callout
32 accept verify = recipient/callout
33 DCF
34
35
36# ----- Routers -----
37
38begin routers
39
40t1:
41 driver = manualroute
42 route_list = * 127.0.0.1 byname
43 self = send
44 transport = smtp
45
46
47# ----- Transports -----
48
49begin transports
50
51smtp:
52 driver = smtp
53 port = PORT_D
54 command_timeout = 2s
55
56
57# ----- Retry -----
58
59begin retry
60
61* * F,5d,10s
62
63
64# End