Fix CVE-2016-1531
[exim.git] / test / confs / 0351
CommitLineData
afda344b
PH
1# Exim test configuration 0351
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 headers_add = ${if !eq{$h_found2:}{}{FOUND-found2: !!}fail}
28
29# ----- Transports -----
30
31begin transports
32
33t1:
34 driver = appendfile
35 user = CALLER
36 file = DIR/test-mail/$local_part
37 headers_add = "\n\
38 TO: $h_to:\n\
39 --------------------------------\n\
40 CC: $h_cc:\n\
41 --------------------------------\n\
42 RESENT-TO: $h_resent-to:\n\
43 --------------------------------\n\
44 REPLY-TO: $h_reply-to:\n\
45 --------------------------------\n\
46 SUBJECT: $h_subject:\n\
47 --------------------------------\n\
48 ALL: $message_headers\n\
49 "
50
51# End