Fix CVE-2016-1531
[exim.git] / test / confs / 0153
1 # Exim test configuration 0153
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14
15 # ----- Routers -----
16
17 begin routers
18
19 virtual:
20   driver = redirect
21   domains = *.virt.test.ex
22   address_data = ${if match{$domain}{^(.*)\\.virt\\.test\\.ex\$}{$1}}
23   data = ${if exists{DIR/aux-fixed/TESTNUM.alias.$address_data} \
24            {${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias.$address_data}}} \
25           fail}
26   no_more
27
28 list:
29   driver = redirect
30   domains = list.test.ex
31   file = ${if exists{DIR/aux-fixed/TESTNUM.list.$local_part} \
32             {DIR/aux-fixed/TESTNUM.list.$local_part}fail}
33   no_more
34
35 real:
36   driver = accept
37   verify_only
38
39
40 # End