Testsuite: bounce_message_file and warn_message_file
[exim.git] / test / confs / 0610
1 # Exim test configuration 0610
2
3 SERVER =
4
5 .include DIR/aux-var/std_conf_prefix
6
7 rfc1413_query_timeout = 0s
8 log_selector = +sender_on_delivery
9
10 # ----- Main settings -----
11
12 acl_smtp_connect = conn_chk
13 acl_smtp_rcpt = accept
14
15 untrusted_set_sender = *
16 queue_only
17 queue_run_in_order
18
19 # ----- ACL -----
20
21 begin acl
22
23 conn_chk:
24 defer condition = ${if eq {SERVER}{server}}
25 accept
26
27 # ----- Routers -----
28
29 begin routers
30
31 r1:
32 driver = accept
33 condition = ${if eq {t1}{$sender_address_local_part}}
34 transport = t1
35
36 r2:
37 driver = accept
38 condition = ${if eq {t2}{$sender_address_local_part}}
39 transport = t2
40
41 # ----- Transports -----
42
43 begin transports
44
45 t1:
46 driver = smtp
47 allow_localhost
48 hosts = 127.0.0.1
49 port = PORT_D
50 interface = 127.0.0.1
51 hosts_try_fastopen = :
52
53 t2:
54 driver = smtp
55 allow_localhost
56 hosts = 127.0.0.1
57 port = PORT_D
58 interface = HOSTIPV4
59 hosts_try_fastopen = :
60
61 # ----- Retry -----
62
63 begin retry
64
65 * * F,5d,10s
66
67 # End
68