Fix CVE-2016-1531
[exim.git] / test / confs / 0032
CommitLineData
afda344b
PH
1# Exim test configuration 0032
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.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
14# ----- Main settings -----
15
0e22dfd1 16dsn_from = MailProgram <xyz@some.where>
afda344b
PH
17
18
19# ----- Routers -----
20
21begin routers
22
23localuser:
24 driver = accept
25 check_local_user
26 transport = local_delivery
27
28others:
29 driver = dnslookup
30 transport = smtp
31 self = fail
32
33
34# ----- Transports -----
35
36begin transports
37
38local_delivery:
39 driver = appendfile
40 delivery_date_add
41 envelope_to_add
42 file = DIR/test-mail/$local_part
43 return_path_add
44
45smtp:
46 driver = smtp
47
48
49# End