Testsuite: bounce_message_file and warn_message_file
[exim.git] / test / confs / 0029
CommitLineData
afda344b
PH
1# Exim test configuration 0029
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9acl_smtp_rcpt = check_rcpt
10
11
12# ------ ACL ------
13
14begin acl
15
16check_rcpt:
17 require verify = sender
18 verify = sender=\
ba74fb8d
JH
19 ${if eq {$sender_address_domain}{test.ex}\
20 {$sender_address_local_part@abc.test.ex}\
afda344b
PH
21 {$sender_address}}
22 accept
23
24
25# ------ Routers ------
26
27begin routers
28
29r1:
30 driver = accept
31 domains = test.ex : xyz.test.ex
32 transport = t1
33
34r2:
35 driver = accept
36 domains = abc.test.ex
37 local_parts = ok
38 transport = t1
39
40
41# ------ Transports ------
42
43begin transports
44
45t1:
46 driver = appendfile
47 file = /dev/null
48
49# End