Make {bounce,warn}_message_file expanded. Bug 2522
[exim.git] / test / confs / 0540
1 # Exim test configuration 0540
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = check_rcpt
10
11 queue_only
12
13
14 # ----- ACLs -----
15
16 begin acl
17
18 check_rcpt:
19 accept verify = recipient/callout
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 r1:
27 driver = accept
28 transport = ${if match {$domain}{^yes}{t1}{t2}}
29
30
31 # ----- Transports -----
32
33 begin transports
34
35 t1:
36 driver = smtp
37 hosts = 127.0.0.1
38 port = PORT_S
39 hosts_try_fastopen = :
40 allow_localhost
41 helo_data = ${if eq{$domain}{yes1}{localhost}{aname}}
42
43 t2:
44 driver = smtp
45 hosts = 127.0.0.1
46 port = PORT_S
47 allow_localhost
48
49 # End