Testsuite: munge for non-WITH_CONTENT_SCAN builds
[exim.git] / test / confs / 0630
1 # Exim test configuration 0630
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
12 # ----- ACL -----
13
14 begin acl
15
16 chk_mail:
17   accept control =              debug/tag=_router/opts=+all/pretrigger=800/trigger=paniclog
18
19 chk_rcpt:
20   accept
21
22 # ----- Routers -----
23
24 begin routers
25
26 r0:
27         # cause paniclog write (by using a tainted filename)
28         # keep the path non-variable
29         driver =        redirect
30         local_parts =   /$local_part
31         data =          :blackhole:
32 #
33 # End