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