DKIM: relaxed body canonicalisation should ignore whitespace at EOL
[exim.git] / test / confs / 0029
CommitLineData
afda344b
PH
1# Exim test configuration 0029
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = check_rcpt
15
16
17# ------ ACL ------
18
19begin acl
20
21check_rcpt:
22 require verify = sender
23 verify = sender=\
24 ${if eq {${domain:$sender_address}}{test.ex}\
25 {${local_part:$sender_address}@abc.test.ex}\
26 {$sender_address}}
27 accept
28
29
30# ------ Routers ------
31
32begin routers
33
34r1:
35 driver = accept
36 domains = test.ex : xyz.test.ex
37 transport = t1
38
39r2:
40 driver = accept
41 domains = abc.test.ex
42 local_parts = ok
43 transport = t1
44
45
46# ------ Transports ------
47
48begin transports
49
50t1:
51 driver = appendfile
52 file = /dev/null
53
54# End