summaryrefslogtreecommitdiff
path: root/test/confs/0153
blob: 35a004a455a859f1443874ed74d80af95df9fd2e (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\$}{${bless:$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.${bless:$local_part}} \
            {DIR/aux-fixed/TESTNUM.list.${bless:$local_part}}fail}
  no_more

real:
  driver = accept
  verify_only


# End