Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[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
15
16
17# ----- Routers -----
18
19begin routers
20
21localuser:
22 driver = accept
23 check_local_user
24 transport = local_delivery
25
26others:
27 driver = dnslookup
28 transport = smtp
29 self = fail
30
31
32# ----- Transports -----
33
34begin transports
35
36local_delivery:
37 driver = appendfile
38 delivery_date_add
39 envelope_to_add
40 file = DIR/test-mail/$local_part
41 return_path_add
42
43smtp:
44 driver = smtp
45
46
47# End