Handle absent tls_require_ciphers correctly.
[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
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_helo = check_helo
17acl_smtp_mail = check_mail
18acl_smtp_rcpt = check_rcpt
19acl_smtp_data = check_data
20acl_smtp_predata = check_predata
21
22qualify_domain = test.ex
23queue_only
24
25
26# ----- ACLs -----
27
28begin acl
29
30check_helo:
31 accept message = HELO_MSG
32
33check_mail:
34 accept message = 299 MAIL is\nOK
35
36check_rcpt:
37 accept message = RCPT_MSG
38
39check_data:
40 accept message = 288 I like the data
41
42check_predata:
43 accept message = 300 Funny, but OK code
44
45
46# End