Make {bounce,warn}_message_file expanded. Bug 2522
[exim.git] / test / confs / 0386
1 # Exim test configuration 0386
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = chk_rcpt
10 qualify_domain = test.ex
11 trusted_users = CALLER
12
13
14 # ----- ACL -----
15 begin acl
16
17 chk_rcpt:
18 accept local_parts = 1
19 endpass
20 acl = DIR/aux-fixed/TESTNUM.acl1
21 accept local_parts = 2
22 endpass
23 acl = DIR/aux-fixed/TESTNUM.acl2
24
25 # ----- Routers -----
26
27 begin routers
28
29 r1:
30 driver = accept
31 transport = t1
32
33 # ----- Transports -----
34
35 begin transports
36
37 t1:
38 driver = appendfile
39 file = DIR/test-mail/${bless:$local_part}
40 user = CALLER
41
42
43 # End