Fix CVE-2016-1531
[exim.git] / test / confs / 0351
1 # Exim test configuration 0351
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14 domainlist local_domains = test.ex
15
16 qualify_domain = test.ex
17 system_filter = DIR/aux-fixed/TESTNUM.F
18
19
20 # ----- Routers -----
21
22 begin routers
23
24 r1:
25   driver = accept
26   transport = t1
27   headers_add = ${if !eq{$h_found2:}{}{FOUND-found2: !!}fail}
28
29 # ----- Transports -----
30
31 begin transports
32
33 t1:
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