1 # control = queue/first_pass_route
3 exim -bd -DSERVER=server -oX PORT_D
6 # First, control=queue_only - we expact the queue run to make separate connections
7 client 127.0.0.1 PORT_D
11 MAIL FROM:<CALLER@test.ex>
13 RCPT TO:<queue_only_1@test.ex>
22 MAIL FROM:<CALLER@test.ex>
24 RCPT TO:<queue_only_2@test.ex>
38 # Second, control=queue/first_pass_route - we expect the queue run to make only one
39 # connection, and put both messages over it
40 client 127.0.0.1 PORT_D
44 MAIL FROM:<CALLER@test.ex>
46 RCPT TO:<first_pass_route_1@test.ex>
55 MAIL FROM:<CALLER@test.ex>
57 RCPT TO:<first_pass_route_2@test.ex>
66 # give time for the background routing in the exim daemon to complete