Add variables for wildcard portion of local-part affix. Bug 281
[exim.git] / test / confs / 0584
CommitLineData
0d2e392e
JH
1# Exim test configuration 0005
2
3.include DIR/aux-var/std_conf_prefix
4
5
6# ----- Main settings -----
7
8domainlist local_domains = @
9
10acl_smtp_rcpt = check_recipient
11trusted_users = CALLER
12
13
14# ----- ACL -----
15
16begin acl
17
18check_recipient:
19 accept hosts = :
20 accept domains = +local_domains
21 deny message = relay not permitted
22
23# ----- Routers -----
24
25begin routers
26
27localuser:
28 driver = accept
29 check_local_user
30 transport = local_delivery
31
32# ----- Transports -----
33
34begin transports
35
36local_delivery:
37 driver = appendfile
38 file = DIR/test-mail/$local_part
39
40# End