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