Fix $regex<n> use-after-free. Bug 2915
[exim.git] / test / confs / 0593
1 # Exim test configuration 0593
2
3 OPT=
4
5 .include DIR/aux-var/std_conf_prefix
6
7
8 # ----- Main settings -----
9
10 domainlist local_domains = @
11
12 acl_smtp_rcpt = check_recipient
13 trusted_users = CALLER
14
15
16 # ----- ACL -----
17
18 begin acl
19
20 check_recipient:
21   accept hosts = :
22   accept domains = +local_domains
23   deny   message = relay not permitted
24
25 # ----- Routers -----
26
27 begin routers
28
29 localuser:
30   driver =      accept
31   transport =   local_delivery
32   errors_to =
33
34 # ----- Transports -----
35
36 begin transports
37
38 local_delivery:
39   driver =      appendfile
40   file =        DIR/test-mail/$local_part
41   create_file = OPT
42
43 # End