PIPE_CONNECT: fix feature-cache refresh
[exim.git] / test / confs / 0425
1 # Exim test configuration 0425
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 primary_hostname = mail.test.ex
9 qualify_domain = test.ex
10
11 acl_smtp_rcpt = a1
12
13
14 # ----- ACLs -----
15
16 begin acl
17
18 a1:
19 warn !verify = recipient
20 warn verify = sender
21
22 accept
23
24
25 # ----- Routers -----
26
27 begin routers
28
29 r1:
30 driver = accept
31 local_parts = ok
32 transport = t1
33
34
35 # ----- Transports -----
36
37 begin transports
38
39 t1:
40 driver = smtp
41
42
43 # End