git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Debug: indentation
[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
helo test
21
mail from:<postmaster@y>
22
rcpt to:<x@y>
23
data
24
From: postmaster@y
25
To: x@y
26
Subject: first test message
27
28
This is the FIRST message body.
29
.
30
quit
31
****
32
server -noipv6 PORT_S
33
220 ESMTP
34
EHLO
35
250-OK
36
250 HELP
37
MAIL FROM:
38
250 Sender OK
39
RCPT TO:
40
250 Receiver OK
41
DATA
42
354 Send it
43
.
44
250 OK (wizzle)
45
QUIT
46
221 bye
47
****
48
exim -odf -bs
49
helo test
50
mail from:<postmaster@y>
51
rcpt to:<x@test.ex>
52
data
53
From: postmaster@y
54
To: x@y
55
Subject: second test message
56
57
This is the SECOND message body.
58
.
59
quit
60
****