0567d8aaf6d5fc5f2062df1148f82ee7f558e9ea
[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 client:
32   driver = accept
33   transport = $sender_address_local_part
34
35 # ----- Transports -----
36
37 begin transports
38
39 t1:
40   driver = smtp
41   allow_localhost
42   hosts = 127.0.0.1
43   port = PORT_D
44   interface = 127.0.0.1
45
46 t2:
47   driver = smtp
48   allow_localhost
49   hosts = 127.0.0.1
50   port = PORT_D
51   interface = HOSTIPV4
52
53 # ----- Retry -----
54
55 begin retry
56
57 * * F,5d,10s
58
59 # End
60