Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0300
CommitLineData
afda344b
PH
1# Exim test configuration 0300
2
3DELAY=0s
4PAH=127.0.0.1
5
4fab92fb
HSHR
6.include DIR/aux-var/std_conf_prefix
7
afda344b 8primary_hostname = myhost.test.ex
afda344b
PH
9
10# ----- Main settings -----
11
12acl_smtp_connect = check_connect
13acl_smtp_helo = check_helo
14acl_smtp_rcpt = accept
15pipelining_advertise_hosts = PAH
16
17
18# ----- ACL -----
19
20begin ACL
21
22check_connect:
23 accept delay = DELAY
24
25check_helo:
26 warn condition = ${if eq {$sender_helo_name}{dis.able}{yes}{no}}
27 control = no_enforce_sync
28 accept
29
30
31# ------ Routers ------
32
33begin routers
34
35r1:
36 driver = redirect
37 data = :blackhole:
38
39# End