Fix $regex<n> use-after-free. Bug 2915
[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 .ifdef DELAY
25   defer condition = ${if eq {SERVER}{server}}
26 .endif
27   accept
28
29 # ----- Routers -----
30
31 begin routers
32
33 r1:
34   driver = accept
35   condition = ${if eq {t1}{$sender_address_local_part}}
36   transport = t1
37
38 r2:
39   driver = accept
40   condition = ${if eq {t2}{$sender_address_local_part}}
41   transport = t2
42
43 # ----- Transports -----
44
45 begin transports
46
47 t1:
48   driver = smtp
49   allow_localhost
50   hosts = 127.0.0.1
51   port = PORT_D
52   interface = 127.0.0.1
53   hosts_try_fastopen =  :
54
55 t2:
56   driver = smtp
57   allow_localhost
58   hosts = 127.0.0.1
59   port = PORT_D
60   interface = HOSTIPV4
61   hosts_try_fastopen =  :
62
63 # ----- Retry -----
64
65 begin retry
66
67 * * F,5d,1s
68
69 # End
70