Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0462
CommitLineData
afda344b
PH
1# Exim test configuration 0462
2
278c6e6c
PH
3SELECTOR=
4
4fab92fb
HSHR
5.include DIR/aux-var/std_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11domainlist local_domains = test.ex
12
13acl_smtp_rcpt = $local_part
14smtp_return_error_details
278c6e6c 15log_selector = SELECTOR
afda344b
PH
16
17# ----- ACL -----
18
19begin acl
20
21checkpm:
22 deny !verify = sender/callout=postmaster
23 accept
24
25nocheckpm:
26 deny !verify = sender/callout
27 accept
28
29# ----- Routers -----
30
31begin routers
32
33all:
34 driver = manualroute
35 route_list = * 127.0.0.1
36 self = send
37 transport = smtp
38
39
40# ----- Transports -----
41
42begin transports
43
44smtp:
45 driver = smtp
46 port = PORT_S
47
48
49# ----- Retry -----
50
51begin retry
52
53* * F,5d,10s
54
55
56# End