Fix $regex<n> use-after-free. Bug 2915
[exim.git] / test / confs / 0631
1 # Exim test configuration 0631
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_mail = chk_mail
10 acl_smtp_rcpt = chk_rcpt
11 acl_smtp_data = chk_data
12
13 # ----- ACL -----
14
15 begin acl
16
17 chk_mail:
18   # Too hard to check for the buffer-full case due to test host
19   # varying path sizes on the 'processing "verb"' lines
20   # So give a massive buffer we will not fill.
21   accept control = debug/tag=_acl/opts=-all+acl/pretrigger=2048
22          message = yes1
23          message = yes2
24          message = yes3
25
26 chk_rcpt:
27   accept control = debug/trigger=now
28
29 chk_data:
30   accept control = debug/stop
31
32 # ----- Routers -----
33
34 begin routers
35
36 r0:
37     driver =    redirect
38     data =      :blackhole:
39 #
40 # End