summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic/0218
blob: f9d036ae30e7c0d1c98e80964b11f80fada16a7c (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# PIPELINING (client: multiple messages, with log_sender_on_delivery)
need_ipv4
#
exim a
Message 1
****
exim b
Message 2
****
server PORT_S
220 Server ready
EHLO
250-OK
250 PIPELINING
MAIL FROM
250 OK
RCPT TO
250 OK
DATA
351 Send more
.
250 OK
MAIL FROM
250 OK
RCPT TO
250 OK
DATA
351 Send more
.
250 OK
QUIT
250 OK
****
exim -d-all+queue_run -v -qq
.
****
# This time, the first one gets a MAIL error. As the message makes no
# progress, the second one runs separately, and gets a refused connection.
exim a
Message 1
****
exim b
Message 2
****
server PORT_S
220 Server ready
EHLO
250-OK
250 PIPELINING
MAIL FROM
550 NO
RCPT TO
503 Unexpected RCPT
DATA
503 Unexpected DATA
QUIT
250 OK
****
exim -d-all+queue_run -v -qq
.
****
# One message and an error message were left on the queue. Add a new 
# message and try again; this time the first message gets a recipient error.
exim c
Message 3
****
server PORT_S
220 Server ready
EHLO
250-OK
250 PIPELINING
MAIL FROM
250 OK
RCPT TO
550 Unknown
DATA
503 Unexpected DATA
RSET
250 OK
MAIL FROM
250 OK
RCPT TO
250 OK
DATA
351 OK
.
250 OK
QUIT
250 OK
****
exim -d-all+ident -v -qqf
.
****
no_msglog_check