Fix CVE-2016-1531
[exim.git] / test / confs / 0291
CommitLineData
afda344b
PH
1# Exim test configuration 0291
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12trusted_users = CALLER
13
14# ----- Main settings -----
15
16
17# ------ Routers ------
18
19begin routers
20
21# a=>b and b=>c
22r1:
23 driver = redirect
24 domains = one
25 data = ${if eq{$local_part}{a}{b}{${if eq{$local_part}{b}{c}}}}
26 qualify_preserve_domain
27
28# a=>b and b=>c, but not if generated by a
29r2:
30 driver = redirect
31 domains = two
32 data = ${if eq{$local_part}{a}{b}{${if eq{$local_part}{b}{c}}}}
33 qualify_preserve_domain
34 no_repeat_use
35
36accept:
37 driver = accept
38 verify_only
39
40# End