tidying
[exim.git] / test / confs / 0386
... / ...
CommitLineData
1# Exim test configuration 0386
2
3.include DIR/aux-var/std_conf_prefix
4
5primary_hostname = myhost.test.ex
6
7# ----- Main settings -----
8
9acl_smtp_rcpt = chk_rcpt
10qualify_domain = test.ex
11trusted_users = CALLER
12
13
14# ----- ACL -----
15begin acl
16
17chk_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
27begin routers
28
29r1:
30 driver = accept
31 transport = t1
32
33# ----- Transports -----
34
35begin transports
36
37t1:
38 driver = appendfile
39 file = DIR/test-mail/$local_part
40 user = CALLER
41
42
43# End