Testsuite: handle RC tagging convention
[exim.git] / test / confs / 0464
CommitLineData
afda344b
PH
1# Exim test configuration 0464
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 = rcpt
10
11domainlist local_domains = test.ex
12domainlist special_domains = lsearch;DIR/aux-fixed/TESTNUM.domains
13
14
15# ----- ACLs -----
16
17begin acl
18
19rcpt:
20 require domains = +special_domains
21 verify = recipient
22
23 require domains = +special_domains
24 verify = recipient
25 accept
26
27
28# ----- Routers -----
29
30begin routers
31
32r1:
33 driver = redirect
34 domains = +special_domains
35 data = $local_part@xxx.$domain
36
37r2:
38 driver = accept
39 transport = smtp
40
41
42# ----- Transports -----
43
44begin transports
45
46smtp:
47 driver = smtp
48 port = PORT_S
277b9979 49 hosts_try_fastopen = :
afda344b
PH
50
51# End