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