Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 0130
1 # Exim test configuration 0130
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 rfc1413_query_timeout = 0s
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13
14 acl_smtp_rcpt = check_recipient
15
16 domainlist local_domains = test.ex
17 hostlist relay_hosts = V4NET.0.0.0
18 qualify_domain = test.ex
19
20
21 # ----- ACL -----
22
23 begin acl
24
25 check_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
35 begin routers
36
37 islocal:
38 driver = manualroute
39 domains = ! +local_domains
40 route_list = "* localhost byname"
41 transport = smtp
42 no_more
43
44
45 # ----- Transports -----
46
47 begin transports
48
49 smtp:
50 driver = smtp
51
52
53 # ----- Retry -----
54
55
56 begin retry
57
58 * * F,1d,15m
59
60
61 # End