Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0517
CommitLineData
afda344b
PH
1# Exim test configuration 0517
2
3ERROR_DETAILS=
4
4fab92fb
HSHR
5.include DIR/aux-var/std_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11acl_smtp_rcpt = a1
12
13
14# ----- ACL ------
15
16begin acl
17
18a1:
19 accept local_parts = usery
20 control = suppress_local_fixups
21 accept
22
23
24# ----- Routers -----
25
26begin routers
27
28r1:
29 driver = accept
30 transport = t1
31
32
33# ----- Transports -----
34
35begin transports
36
37t1:
38 driver = appendfile
39 file = DIR/test-mail/$local_part
40 user = CALLER
41
42# End