update to pre-4.87 master
[exim.git] / test / confs / 0205
CommitLineData
afda344b
PH
1# Exim test configuration 0205
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
bfe645c1 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex : \
15 testhack.test.ex : \
16 testhack2.test.ex
17
18percent_hack_domains = testhack.test.ex : \
19 testhack2.test.ex
20
21
22# ----- Routers -----
23
24begin routers
25
26fail_remote_domains:
27 driver = redirect
28 domains = ! +local_domains
29 allow_fail
30 data = :fail: unrouteable mail domain "$domain"
31
32redirect:
33 driver = redirect
34 local_parts = redirect
35 errors_to = postmaster@test.ex
36 data = redirected%test.ex@testhack.test.ex
37 address_data = $address_data-redirect
38
39local_domains:
40 driver = accept
41 transport = local_delivery
42
43
44# ----- Transports -----
45
46begin transports
47
48local_delivery:
49 driver = appendfile
50 file = DIR/test-mail/$local_part
51 user = CALLER
52 headers_add = Address-Data: >$address_data<
53
54
55# End