Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 0164
CommitLineData
afda344b
PH
1# Exim test configuration 0164
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex
14qualify_domain = test.ex
15
16system_filter = DIR/aux-var/TESTNUM.F
17system_filter_pipe_transport = address_pipe
18system_filter_user = CALLER
19
20
21# ----- Routers -----
22
23begin routers
24
25user:
26 driver = accept
27 retry_use_local_part
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 user = CALLER
39
40address_pipe:
41 driver = pipe
42 return_output
43
44
45# End