git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Memory management: when running under the testsuite, check every string variable...
[exim.git]
/
test
/
scripts
/
0000-Basic
/
0565
1
# headers_only in SMTP
2
need_ipv4
3
server -noipv6 PORT_S
4
220 ESMTP
5
EHLO
6
250-OK
7
250 HELP
8
MAIL FROM:
9
250 Sender OK
10
RCPT TO:
11
250 Receiver OK
12
DATA
13
354 Send it
14
.
15
250 OK (wizzle)
16
QUIT
17
221 bye
18
****
19
exim -odf -bs
20
mail from:<postmaster@y>
21
rcpt to:<x@y>
22
data
23
From: postmaster@y
24
To: x@y
25
Subject: first test message
26
27
This is the FIRST message body.
28
.
29
quit
30
****
31
server -noipv6 PORT_S
32
220 ESMTP
33
EHLO
34
250-OK
35
250 HELP
36
MAIL FROM:
37
250 Sender OK
38
RCPT TO:
39
250 Receiver OK
40
DATA
41
354 Send it
42
.
43
250 OK (wizzle)
44
QUIT
45
221 bye
46
****
47
exim -odf -bs
48
mail from:<postmaster@y>
49
rcpt to:<x@test.ex>
50
data
51
From: postmaster@y
52
To: x@y
53
Subject: second test message
54
55
This is the SECOND message body.
56
.
57
quit
58
****