PIPE_CONNECT: fix feature-cache refresh
[exim.git] / test / confs / 0548
1 # Exim test configuration 0548
2
3 SERVER=
4
5 .include DIR/aux-var/std_conf_prefix
6
7
8 # ----- Main settings -----
9
10 acl_smtp_connect = acl_connect
11 acl_smtp_rcpt = acl_rcpt
12 qualify_domain = test.ex
13 queue_run_in_order
14
15
16 # ----- ACLs -----
17
18 begin acls
19
20 acl_connect:
21 defer message = host deferred
22 hosts = thishost.test.ex
23 accept
24
25 acl_rcpt:
26 defer message = Recipient deferred
27
28
29 # ----- Routers -----
30
31 begin routers
32
33 smarthost:
34 driver = accept
35 transport = smtp
36
37
38 # ----- Transports -----
39
40 begin transports
41
42 smtp:
43 driver = smtp
44 hosts = HOSTIPV4 : thishost.test.ex
45 allow_localhost
46 port = PORT_D
47
48
49 # ----- Retry -----
50
51 begin retry
52
53 thishost.test.ex * F,40s,4s
54 * * F,2s,2s; F,2s,10s
55
56 # End