Testsuite: Add munge for EXPERIMENTAL_DSN_INFO
[exim.git] / test / confs / 0291
CommitLineData
afda344b
PH
1# Exim test configuration 0291
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
10trusted_users = CALLER
11
12# ----- Main settings -----
13
14
15# ------ Routers ------
16
17begin routers
18
19# a=>b and b=>c
20r1:
21 driver = redirect
22 domains = one
23 data = ${if eq{$local_part}{a}{b}{${if eq{$local_part}{b}{c}}}}
24 qualify_preserve_domain
25
26# a=>b and b=>c, but not if generated by a
27r2:
28 driver = redirect
29 domains = two
30 data = ${if eq{$local_part}{a}{b}{${if eq{$local_part}{b}{c}}}}
31 qualify_preserve_domain
32 no_repeat_use
33
34accept:
35 driver = accept
36 verify_only
37
38# End