summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic/0288
blob: ed381dad7c50e7eeca3b95aa26e534f705911787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# serialize_hosts
need_ipv4
#
# preload the spool
exim -odq a b 
.
****
#
# a slow server as a test target
server PORT_S
220 ESMTP
EHLO
250-OK
250 HELP
*sleep 2
MAIL FROM:
250 Sender OK
RCPT TO:
250 Recipient OK
DATA
354 Send data
.
250 OK
QUIT
250 OK
****
#
# First message should go; second does not wait for 1st complete
# on same conn due to connection_max_messages, then is deferred
# as second transport run aborted by serialize_hosts.
exim -q
****
#
# a server as a test target
server PORT_S
220 ESMTP
EHLO
250-OK
250 HELP
MAIL FROM:
250 Sender OK
RCPT TO:
250 Recipient OK
DATA
354 Send data
.
250 OK
QUIT
250 OK
****
#
# Remaining message on queue should go immediately; no delay
# associated with retry rules
exim -q
****