Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 0130
CommitLineData
afda344b
PH
1# Exim test configuration 0130
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
13
14acl_smtp_rcpt = check_recipient
15
16domainlist local_domains = test.ex
17hostlist relay_hosts = V4NET.0.0.0
18qualify_domain = test.ex
19
20
21# ----- ACL -----
22
23begin acl
24
25check_recipient:
26 deny message = unrouteable address
27 !verify = recipient
28 accept domains = +local_domains
29 accept hosts = +relay_hosts
30 deny message = relay not permitted
31
32
33# ----- Routers -----
34
35begin routers
36
37islocal:
38 driver = manualroute
39 domains = ! +local_domains
40 route_list = "* localhost byname"
41 transport = smtp
42 no_more
43
44
45# ----- Transports -----
46
47begin transports
48
49smtp:
50 driver = smtp
51
52
53# ----- Retry -----
54
55
56begin retry
57
58* * F,1d,15m
59
60
61# End