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