Testsuite: unbreak testcase
[exim.git] / test / confs / 0341
CommitLineData
afda344b
PH
1# Exim test configuration 0341
2
3SERVER =
4
d4dc049f
JH
5.include DIR/aux-var/std_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11acl_smtp_rcpt = accept
12queue_only
13
14
15# ----- Routers -----
16
17begin routers
18
19# Use an expansion for errors_to to force different copies of the string
20
21local:
22 driver = accept
23 domains = test.ex
24 transport = local_delivery
25 errors_to = postmaster@$domain
26
27remote:
28 driver = accept
29 condition = ${if eq {SERVER}{server}{no}{yes}}
30 transport = send_to_server
31 errors_to = mailmaster@$domain
32
33
34# ----- Transports -----
35
36begin transports
37
38local_delivery:
39 driver = appendfile
40 file = DIR/test-mail/mailbox
41 user = CALLER
42 batch_max = 10
43 envelope_to_add
44
45send_to_server:
46 driver = smtp
47 allow_localhost
48 hosts = 127.0.0.1
49 port = PORT_D
277b9979 50 hosts_try_fastopen = :
afda344b
PH
51
52
53# End