Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 0479
CommitLineData
afda344b
PH
1# Exim test configuration 0479
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
13acl_smtp_rcpt = rcpt
14
15
16# ----- ACLs -----
17
18begin acl
19
20rcpt:
21 require logwrite = sender address is <$sender_address>
22 verify = sender
23 accept
24
25
26# ----- Routers -----
27
28begin routers
29
30r1:
31 driver = accept
32 transport = t1
33
34
35# ----- Transports -----
36
37begin transports
38
39t1:
40 driver = smtp
41 port = PORT_S
42 hosts = 127.0.0.1
43 allow_localhost
44 connect_timeout = 1s
45
46
47# ----- Rewrite -----
48
49begin rewrite
50
51a@b rewritten-a@rewritten-b
52
53
54# End