Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 0446
CommitLineData
afda344b
PH
1# Exim test configuration 0446
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7
8# ----- Main settings -----
9
10qualify_domain = test.ex
11
12acl_smtp_rcpt = accept
13acl_smtp_data = smtp_data
14acl_not_smtp = not_smtp
15
16
17#----- ACL -----
18
19begin acl
20
21smtp_data:
22 warn message = X-ACL: $received_count
23 accept
24
25not_smtp:
26 warn message = X-ACL: $received_count
27 accept
28
29
30#----- Routers -----
31
32begin routers
33
34r1:
35 driver = accept
36 transport = t1
37 headers_add = X-Router: $received_count
38
39
40# ----- Transports -----
41
42begin transports
43
44t1:
45 driver = appendfile
0d2e392e 46 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
47 user = CALLER
48
49# End