PIPE_CONNECT: fix feature-cache refresh
[exim.git] / test / confs / 0209
CommitLineData
afda344b
PH
1# Exim test configuration 0209
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8acl_smtp_rcpt = check_recipient
9domainlist local_domains = test.ex
10qualify_domain = test.ex
11queue_run_in_order
12
13# ----- ACL -----
14
15begin acl
16
17check_recipient:
18 accept hosts = :
19 accept domains = +local_domains
20 deny message = relay not permitted
21
22
23# ----- Routers -----
24
25begin routers
26
27others:
28 driver = manualroute
29 domains = ! +local_domains
30 route_list = * 127.0.0.1 byname
31 self = send
32 transport = smtp
33 no_more
34
35# ----- Transports -----
36
37begin transports
38
39smtp:
40 driver = smtp
41 port = PORT_S
42
43
44# ----- Retry -----
45
46begin retry
47
48* * F,5d,8h
49
50
51# End