Testsuite: bounce_message_file and warn_message_file
[exim.git] / test / confs / 0518
CommitLineData
afda344b
PH
1# Exim test configuration 0518
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9acl_smtp_rcpt = check_rcpt
10
11queue_only
12
13
14# ----- ACLs -----
15
16begin acl
17
18check_rcpt:
19 accept verify = recipient/callout
20
21
22# ----- Routers -----
23
24begin routers
25
26r1:
27 driver = accept
28 local_part_prefix = *+
29 local_part_suffix = -*
30 local_part_prefix_optional
31 local_part_suffix_optional
32 transport = ${if eq {$domain}{include}{t1}{t2}}
33
34
35# ----- Transports -----
36
37begin transports
38
39t1:
40 driver = smtp
41 hosts = 127.0.0.1
42 port = PORT_S
277b9979 43 hosts_try_fastopen = :
afda344b
PH
44 allow_localhost
45 rcpt_include_affixes
46
47t2:
48 driver = smtp
49 hosts = 127.0.0.1
50 port = PORT_S
277b9979 51 hosts_try_fastopen = :
afda344b
PH
52 allow_localhost
53
54# End