update to pre-4.87 master
[exim.git] / test / confs / 0032
CommitLineData
afda344b
PH
1# Exim test configuration 0032
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
bfe645c1 10tls_advertise_hosts =
afda344b
PH
11
12
13# ----- Main settings -----
14
0e22dfd1 15dsn_from = MailProgram <xyz@some.where>
afda344b
PH
16
17
18# ----- Routers -----
19
20begin routers
21
22localuser:
23 driver = accept
24 check_local_user
25 transport = local_delivery
26
27others:
28 driver = dnslookup
29 transport = smtp
30 self = fail
31
32
33# ----- Transports -----
34
35begin transports
36
37local_delivery:
38 driver = appendfile
39 delivery_date_add
40 envelope_to_add
41 file = DIR/test-mail/$local_part
42 return_path_add
43
44smtp:
45 driver = smtp
46
47
48# End