Track tainted data and refuse to expand it
[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
52 t2:
53   driver = smtp
54   allow_localhost
55   hosts = 127.0.0.1
56   port = PORT_D
57   interface = HOSTIPV4
58
59 # ----- Retry -----
60
61 begin retry
62
63 * * F,5d,10s
64
65 # End
66