summaryrefslogtreecommitdiff
path: root/test/confs/0205
blob: 4dc1be78af98cd15e9af87bdc974d8c4a5649b34 (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
52
53
54
55
# Exim test configuration 0205

exim_path = EXIM_PATH
host_lookup_order = bydns
primary_hostname = myhost.test.ex
spool_directory = DIR/spool
log_file_path = DIR/spool/log/%slog
gecos_pattern = ""
gecos_name = CALLER_NAME
tls_advertise_hosts =

# ----- 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
  user = CALLER
  headers_add = Address-Data: >$address_data<


# End