Make {bounce,warn}_message_file expanded. Bug 2522
[exim.git] / test / confs / 0300
1 # Exim test configuration 0300
2
3 DELAY=0s
4 PAH=127.0.0.1
5
6 .include DIR/aux-var/std_conf_prefix
7
8 primary_hostname = myhost.test.ex
9
10 # ----- Main settings -----
11
12 acl_smtp_connect = check_connect
13 acl_smtp_helo = check_helo
14 acl_smtp_rcpt = accept
15 pipelining_advertise_hosts = PAH
16
17
18 # ----- ACL -----
19
20 begin ACL
21
22 check_connect:
23 accept delay = DELAY
24
25 check_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
33 begin routers
34
35 r1:
36 driver = redirect
37 data = :blackhole:
38
39 # End