Fix CVE-2016-1531
[exim.git] / test / confs / 0012
CommitLineData
afda344b
PH
1# Exim test configuration 0012
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
14domainlist local_domains = @
15
16
17# ----- Routers -----
18
19begin routers
20
21system_aliases:
22 driver = redirect
23 data = ${if eq {$local_part}{blackhole}{:blackhole:}}
24
25localuser:
26 driver = accept
27 check_local_user
28 transport = local_delivery
29
30
31# ----- Transports -----
32
33begin transports
34
35local_delivery:
36 driver = appendfile
37 delivery_date_add
38 envelope_to_add
39 file = DIR/test-mail/$local_part
40 return_path_add
41
42
43# End