Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 0546
1 # Exim test configuration 0546
2
3 HELO_MSG=One line
4 RCPT_MSG=RCPT is OK
5
6 .include DIR/aux-var/std_conf_prefix
7
8
9 # ----- Main settings -----
10
11 acl_smtp_helo = check_helo
12 acl_smtp_mail = check_mail
13 acl_smtp_rcpt = check_rcpt
14 acl_smtp_data = check_data
15 acl_smtp_predata = check_predata
16
17 qualify_domain = test.ex
18 queue_only
19
20
21 # ----- ACLs -----
22
23 begin acl
24
25 check_helo:
26 accept message = HELO_MSG
27
28 check_mail:
29 accept message = 299 MAIL is\nOK
30
31 check_rcpt:
32 accept message = RCPT_MSG
33
34 check_data:
35 accept message = 288 I like the data
36
37 check_predata:
38 accept message = 300 Funny, but OK code
39
40
41 # End