Testsuite: Explicit disabling of identd no longer needed
[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
9
10# ----- Main settings -----
11
12
13# ----- Routers -----
14
15begin routers
16
17virtual:
18 driver = redirect
19 domains = *.virt.test.ex
20 address_data = ${if match{$domain}{^(.*)\\.virt\\.test\\.ex\$}{$1}}
21 data = ${if exists{DIR/aux-fixed/TESTNUM.alias.$address_data} \
22 {${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias.$address_data}}} \
23 fail}
24 no_more
25
26list:
27 driver = redirect
28 domains = list.test.ex
29 file = ${if exists{DIR/aux-fixed/TESTNUM.list.$local_part} \
30 {DIR/aux-fixed/TESTNUM.list.$local_part}fail}
31 no_more
32
33real:
34 driver = accept
35 verify_only
36
37
38# End