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