Use common routine for building tagstring for dns-fail cache
[exim.git] / test / confs / 0291
... / ...
CommitLineData
1# Exim test configuration 0291
2
3.include DIR/aux-var/std_conf_prefix
4
5trusted_users = CALLER
6primary_hostname = myhost.test.ex
7
8# ----- Main settings -----
9
10
11# ------ Routers ------
12
13begin routers
14
15# a=>b and b=>c
16r1:
17 driver = redirect
18 domains = one
19 data = ${if eq{$local_part}{a}{b}{${if eq{$local_part}{b}{c}}}}
20 qualify_preserve_domain
21
22# a=>b and b=>c, but not if generated by a
23r2:
24 driver = redirect
25 domains = two
26 data = ${if eq{$local_part}{a}{b}{${if eq{$local_part}{b}{c}}}}
27 qualify_preserve_domain
28 no_repeat_use
29
30accept:
31 driver = accept
32 verify_only
33
34# End