a3b3277b747964a02ec2e5d8f6f0f30878fe085c
[exim.git] / test / confs / 0291
1 # Exim test configuration 0291
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 trusted_users = CALLER
11
12 # ----- Main settings -----
13
14
15 # ------ Routers ------
16
17 begin routers
18
19 # a=>b and b=>c
20 r1:
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
27 r2:
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
34 accept:
35   driver = accept
36   verify_only
37
38 # End