Fix with-TLS non-International build
[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
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex : \
14 testhack.test.ex : \
15 testhack2.test.ex
16
17percent_hack_domains = testhack.test.ex : \
18 testhack2.test.ex
19
20
21# ----- Routers -----
22
23begin routers
24
25fail_remote_domains:
26 driver = redirect
27 domains = ! +local_domains
28 allow_fail
29 data = :fail: unrouteable mail domain "$domain"
30
31redirect:
32 driver = redirect
33 local_parts = redirect
34 errors_to = postmaster@test.ex
35 data = redirected%test.ex@testhack.test.ex
36 address_data = $address_data-redirect
37
38local_domains:
39 driver = accept
40 transport = local_delivery
41
42
43# ----- Transports -----
44
45begin transports
46
47local_delivery:
48 driver = appendfile
49 file = DIR/test-mail/$local_part
50 user = CALLER
51 headers_add = Address-Data: >$address_data<
52
53
54# End