Regex compile cacheing
[exim.git] / test / confs / 0632
1 # Exim test configuration 0632
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6 queue_only
7
8 # ----- Main settings -----
9
10 acl_smtp_rcpt = chk_rcpt
11
12 # ----- ACL -----
13
14 begin acl
15
16 chk_rcpt:
17   # We're doing these to see what REs the daemon compiles, in stderr
18   warn  domains =       ^nomatch_list
19         logwrite =      should not match RE in list
20
21   warn  condition =     ${if match {a_random_string} {static_RE}}
22         logwrite =      should not match RE in match cond
23   warn  condition =     ${if match {a_random_string} {tricky_static_RE\$}}
24         logwrite =      should not match RE in match cond
25   warn  condition =     ${if match {a_random_string} {pid=${pid} uncacheable_RE}}
26         logwrite =      should not match RE in match cond
27   accept
28
29 # ----- Routers -----
30
31 begin routers
32
33 r0:
34     driver =    redirect
35     data =      :blackhole:
36 #
37 # End