Added dsn_from to vary the contents of From: in DSNs
[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
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
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