Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0546
CommitLineData
4e88a19f
PH
1# Exim test configuration 0546
2
3HELO_MSG=One line
4RCPT_MSG=RCPT is OK
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
4e88a19f
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15acl_smtp_helo = check_helo
16acl_smtp_mail = check_mail
17acl_smtp_rcpt = check_rcpt
18acl_smtp_data = check_data
19acl_smtp_predata = check_predata
20
21qualify_domain = test.ex
22queue_only
23
24
25# ----- ACLs -----
26
27begin acl
28
29check_helo:
30 accept message = HELO_MSG
31
32check_mail:
33 accept message = 299 MAIL is\nOK
34
35check_rcpt:
36 accept message = RCPT_MSG
37
38check_data:
39 accept message = 288 I like the data
40
41check_predata:
42 accept message = 300 Funny, but OK code
43
44
45# End