blob: c16f88fe95a98f0f58b7f4896350ed4b74c6bc9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Exim test configuration 0153
.include DIR/aux-var/std_conf_prefix
# ----- Main settings -----
# ----- Routers -----
begin routers
virtual:
driver = redirect
domains = *.virt.test.ex
address_data = ${if match{$domain}{^(.*)\\.virt\\.test\\.ex\$}{$1}}
data = ${if exists{DIR/aux-fixed/TESTNUM.alias.$address_data} \
{${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias.$address_data}}} \
fail}
no_more
list:
driver = redirect
domains = list.test.ex
file = ${if exists{DIR/aux-fixed/TESTNUM.list.$local_part} \
{DIR/aux-fixed/TESTNUM.list.$local_part}fail}
no_more
real:
driver = accept
verify_only
# End
|