Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 4000
CommitLineData
afda344b
PH
1# Exim test configuration 4000
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
bf485bf3 5log_selector = +subject
d4dc049f 6primary_hostname = myhost.test.ex
afda344b
PH
7
8
9# ----- Main settings -----
10
93cad488 11acl_smtp_rcpt = accept
afda344b 12acl_smtp_mime = check_mime
afda344b
PH
13
14
15# ----- ACL -----
16
17begin acl
18
afda344b 19check_mime:
5b6f7658
JH
20.ifdef BAD
21 deny message = this is a deny from the mime acl
22.endif
23
afda344b 24 warn decode = default
71fafd95
PH
25 add_header = X-$mime_part_count-content-type: $mime_content_type\n\
26 X-$mime_part_count-filename: $mime_filename\n\
27 X-$mime_part_count-charset: $mime_charset\n\
28 X-$mime_part_count-boundary: $mime_boundary\n\
29 X-$mime_part_count-content-disposition: $mime_content_disposition\n\
30 X-$mime_part_count-content-transfer-encoding: $mime_content_transfer_encoding\n\
31 X-$mime_part_count-content-id: $mime_content_id\n\
32 X-$mime_part_count-content-description: $mime_content_description\n\
33 X-$mime_part_count-is-multipart: $mime_is_multipart\n\
34 X-$mime_part_count-is-coverletter: $mime_is_coverletter\n\
35 X-$mime_part_count-is-rfc822: $mime_is_rfc822\n\
36 X-$mime_part_count-decode-filename: $mime_decoded_filename\n\
37 X-$mime_part_count-content-size: $mime_content_size
afda344b
PH
38 accept
39
40
41# ----- Routers -----
42
43begin routers
44
45r1:
46 driver = accept
47 transport = t1
afda344b
PH
48
49# ----- Transports -----
50
51begin transports
52
53t1:
54 driver = appendfile
0d2e392e 55 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
56 user = CALLER
57
58
59# End