summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic/0565
blob: 8596233784aac97dcc2b88a1bee474436cac5e96 (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
# headers_only in SMTP
need_ipv4
server -noipv6 PORT_S
220 ESMTP
EHLO
250-OK
250 HELP
MAIL FROM:
250 Sender OK
RCPT TO:
250 Receiver OK
DATA
354 Send it
.
250 OK (wizzle)
QUIT
221 bye
****
exim -odf -bs
mail from:<postmaster@y>
rcpt to:<x@y>
data
From: postmaster@y
To: x@y
Subject: first test message

This is the FIRST message body.
.
quit
****
server -noipv6 PORT_S
220 ESMTP
EHLO
250-OK
250 HELP
MAIL FROM:
250 Sender OK
RCPT TO:
250 Receiver OK
DATA
354 Send it
.
250 OK (wizzle)
QUIT
221 bye
****
exim -odf -bs
mail from:<postmaster@y>
rcpt to:<x@test.ex>
data
From: postmaster@y
To: x@y
Subject: second test message

This is the SECOND message body.
.
quit
****