Fix CVE-2016-1531
[exim.git] / test / confs / 0310
CommitLineData
afda344b
PH
1# Exim test configuration 0310
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15no_bounce_return_message
16
17# ----- Routers -----
18
19begin routers
20
21bounce:
22 driver = accept
23 senders = :
24 transport = bounce
25
26all:
27 driver = accept
28 transport = local_delivery
29
30
31# ----- Transports -----
32
33begin transports
34
35local_delivery:
36 driver = appendfile
37 file = DIR/test-mail/$local_part
38 quota = 5
39 user = CALLER
40
41bounce:
42 driver = appendfile
43 file = DIR/test-mail/$local_part
44 user = CALLER
45
46
47# End