Testsuite: bounce_message_file and warn_message_file
[exim.git] / test / confs / 0553
1 # Exim test configuration 0553
2
3 DCF =
4 SERVER =
5
6 .include DIR/aux-var/std_conf_prefix
7
8 primary_hostname = myhost.test.ex
9
10 # ----- Main settings -----
11
12 acl_smtp_rcpt = check_recipient
13
14 queue_only
15
16 # ----- ACL -----
17
18 begin acl
19
20 check_recipient:
21 # Callouts accepted with a delay
22 accept senders = :
23 delay = 1s
24
25 # Non-callouts do the callout
26 accept verify = recipient/callout
27 DCF
28
29
30 # ----- Routers -----
31
32 begin routers
33
34 t1:
35 driver = manualroute
36 route_list = * 127.0.0.1 byname
37 self = send
38 transport = smtp
39
40
41 # ----- Transports -----
42
43 begin transports
44
45 smtp:
46 driver = smtp
47 port = PORT_D
48 hosts_try_fastopen = :
49 command_timeout = 2s
50
51
52 # ----- Retry -----
53
54 begin retry
55
56 * * F,5d,10s
57
58
59 # End