Fix CVE-2016-1531
[exim.git] / test / confs / 0111
CommitLineData
afda344b
PH
1# Exim test configuration 0111
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14qualify_domain = test.ex
15
16
17# ----- Routers -----
18
19begin routers
20
21alias:
22 driver = redirect
23 allow_defer
24 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
25 errors_to = postmaster@test.ex
26 headers_add = X-Alias: $local_part
27 retry_use_local_part
28
29forward:
30 driver = redirect
31 check_ancestor
32 no_check_local_user
33 file = DIR/aux-fixed/TESTNUM.forward
34 headers_add = X-Forward: $local_part
35 headers_remove = Remove
36 retry_use_local_part
37
38deliver:
39 driver = accept
40 local_parts = userx : postmaster
41 retry_use_local_part
42 transport = appendfile
43
44
45# ----- Transports -----
46
47begin transports
48
49appendfile:
50 driver = appendfile
51 envelope_to_add
52 file = DIR/test-mail/$local_part
53 user = CALLER
54
55
56# End