Fix CVE-2016-1531
[exim.git] / test / confs / 0140
CommitLineData
afda344b
PH
1# Exim test configuration 0140
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
21caller:
22 driver = accept
23 local_parts = CALLER
24 retry_use_local_part
25 transport = local_delivery
26
27reply:
28 driver = accept
29 retry_use_local_part
30 senders = !
31 transport = $local_part
32
33
34# ----- Transports -----
35
36begin transports
37
38reply1:
39 driver = autoreply
40 text = "Test auto reply to $h_subject:\nthis is another line"
41 to = Reply Person <$sender_address>
42 user = EXIMUSER
43
44reply2:
45 driver = autoreply
46 subject = "Re: $h_subject:"
47 to = $reply_address
48 user = EXIMUSER
49
50local_delivery:
51 driver = appendfile
52 delivery_date_add
53 envelope_to_add
54 file = DIR/test-mail/$local_part
55 return_path_add
56 user = CALLER
57
58
59# End