blob: b604f9b94af9138a640fd444a3a9c69516419109 (
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
35
36
37
38
39
|
# Exim test configuration 0153
exim_path = EXIM_PATH
host_lookup_order = bydns
rfc1413_query_timeout = 0s
spool_directory = DIR/spool
log_file_path = DIR/spool/log/%slog
gecos_pattern = ""
gecos_name = CALLER_NAME
# ----- 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
|