Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0417
CommitLineData
afda344b
PH
1# Exim test configuration 0417
2
3RETURN_ERROR_DETAILS = false
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14primary_hostname = mail.test.ex
15qualify_domain = test.ex
16
17acl_smtp_rcpt = rcpt
18smtp_return_error_details = RETURN_ERROR_DETAILS
19
20
21# ----- ACLs -----
22
23begin acl
24
25rcpt:
26 require verify = sender
27
28
29# ----- Routers -----
30
31begin routers
32
33r1:
34 driver = dnslookup
35 transport = t1
36
37
38# ----- Transports -----
39
40begin transports
41
42t1:
43 driver = smtp
44
45# End