Fix CVE-2016-1531
[exim.git] / test / confs / 0412
CommitLineData
afda344b
PH
1# Exim test configuration 0412
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 = test.ex
15
16qualify_domain = test.ex
17system_filter = DIR/aux-fixed/TESTNUM.F
18
19
20# ----- Routers -----
21
22begin routers
23
24r1:
25 driver = accept
26 transport = t1
27
28# ----- Transports -----
29
30begin transports
31
32t1:
33 driver = appendfile
34 user = CALLER
35 file = DIR/test-mail/$local_part
36 headers_add = "\n\
37 FROM: $h_from:\n\
38 --------------------------------\n\
39 REPLY_ADDRESS: $reply_address\n\
40 --------------------------------\n\
41 "
42
43# End