git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Check for overflow in numeric expansion conditions; forbid negative
[exim.git]
/
test
/
scripts
/
0000-Basic
/
0285
1
# max_rcpt and connection_max_messages (no parallelism)
2
need_ipv4
3
#
4
exim -odq a b c d e f
5
.
6
****
7
server PORT_S
8
220 ESMTP
9
EHLO
10
250-OK
11
250 HELP
12
MAIL FROM:
13
250 Sender OK
14
RCPT TO:
15
250 Recipient OK
16
RCPT TO:
17
250 Recipient OK
18
DATA
19
354 Send data
20
.
21
250 OK
22
MAIL FROM:
23
250 Sender OK
24
RCPT TO:
25
550 Recipient not OK
26
RCPT TO:
27
550 Recipient not OK
28
RSET
29
250 OK
30
MAIL FROM:
31
250 Sender OK
32
RCPT TO:
33
250 Recipient OK
34
RCPT TO:
35
250 Recipient OK
36
DATA
37
354 Send data
38
.
39
250 OK
40
QUIT
41
250 OK
42
****
43
exim -odi -q
44
****
45
exim -odq a b c d e f g h
46
.
47
****
48
server PORT_S 2
49
220 ESMTP
50
EHLO
51
250-OK
52
250 HELP
53
MAIL FROM:
54
250 Sender OK
55
RCPT TO:
56
250 Recipient OK
57
RCPT TO:
58
250 Recipient OK
59
DATA
60
354 Send data
61
.
62
250 OK
63
MAIL FROM:
64
250 Sender OK
65
RCPT TO:
66
550 Recipient not OK
67
RCPT TO:
68
550 Recipient not OK
69
RSET
70
250 OK
71
MAIL FROM:
72
250 Sender OK
73
RCPT TO:
74
250 Recipient OK
75
RCPT TO:
76
250 Recipient OK
77
DATA
78
354 Send data
79
.
80
250 OK
81
QUIT
82
250 OK
83
*eof
84
220 ESMTP
85
EHLO
86
250-OK
87
250 HELP
88
MAIL FROM:
89
250 Sender OK
90
RCPT TO:
91
250 Recipient OK
92
RCPT TO:
93
250 Recipient OK
94
DATA
95
354 Send data
96
.
97
250 OK
98
QUIT
99
250 OK
100
****
101
exim -odi -q
102
****