Testsuite: testcase for 3013
[exim.git] / test / confs / 0635
1 # Exim test configuration 0635
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 domainlist local_domains = @
9
10 acl_smtp_rcpt = accept
11 acl_smtp_data = check_data
12 trusted_users = CALLER
13
14
15 # ----- ACL -----
16
17 begin acl
18
19 check_data:
20   accept logwrite = \$recipients: "$recipients"
21          logwrite = run-wrapped \$recipients: "${run{/bin/echo $recipients}}"
22
23 # ----- Routers -----
24
25 begin routers
26
27 fail_remote_domains:
28   driver = redirect
29   domains = ! +local_domains
30   data = :fail: unrouteable mail domain "$domain"
31
32 localuser:
33   driver = accept
34   check_local_user
35   transport = local_delivery
36
37 # ----- Transports -----
38
39 begin transports
40
41 local_delivery:
42   driver = appendfile
43   file = DIR/test-mail/$local_part_data
44
45 # End