summaryrefslogtreecommitdiff
path: root/test/confs/0205
blob: 12edc868b5d45358f150f303f8551ef7d1d7ebd4 (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
48
49
50
51
# Exim test configuration 0205

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

domainlist local_domains = test.ex : \
    testhack.test.ex : \
    testhack2.test.ex

percent_hack_domains = testhack.test.ex : \
    testhack2.test.ex


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

begin routers

fail_remote_domains:
  driver = redirect
  domains = ! +local_domains
  allow_fail
  data = :fail: unrouteable mail domain "$domain"

redirect:
  driver = redirect
  local_parts = redirect
  errors_to = postmaster@test.ex
  data = redirected%test.ex@testhack.test.ex
  address_data = $address_data-redirect

local_domains:
  driver = accept
  transport = local_delivery


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

begin transports

local_delivery:
  driver = appendfile
  file = DIR/test-mail/$local_part
  create_file = DIR/test-mail
  user = CALLER
  headers_add = Address-Data: >$address_data<


# End