summaryrefslogtreecommitdiff
path: root/test/confs/0414
blob: c0fbeffdb4fbda4ee0b58fd9c35537dfe78a067a (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
40
41
42
43
44
45
46
47
# Exim test configuration 0414

.include DIR/aux-var/std_conf_prefix


# ----- Main settings -----

primary_hostname = mail.test.ex
qualify_domain = test.ex

domainlist A = lsearch;DIR/aux-fixed/TESTNUM.list1
domainlist B = lsearch;DIR/aux-fixed/TESTNUM.list2
domainlist C = +A : +B


# ----- Routers -----

begin routers

r1:
  driver = accept
  transport = t1
  domains = !+C
  debug_print = domain_data=$domain_data

r2:
  driver = accept
  transport = t1
  domains = +B
  debug_print = domain_data=$domain_data

r3:
  driver = accept
  transport = t1
  domains = +A
  debug_print = domain_data=$domain_data

# ----- Transports -----

begin transports

t1:
  driver = appendfile
  file = /dev/null
  user = CALLER

# End