[REBOL] Re: Send & mail-server problem
From: robert:muench:robertmuench at: 7-Aug-2002 6:41
> -----Original Message-----
> From: [rebol-bounce--rebol--com] [mailto:[rebol-bounce--rebol--com]]
> On Behalf Of G. Scott Jones
> Sent: Sunday, August 04, 2002 8:17 PM
> To: [rebol-list--rebol--com]
> Subject: [REBOL] Re: Send & mail-server problem
> Looking at the error and the smtp scheme, I think that the
> most likely problem is that the mail server is sending a
> nonstandard sign-off sequence. Normally, after the body of
> the email is sent, REBOL sends a "QUIT" command. In response,
> then it expects to see "221" followed by any brief message.
Hi, ok I have made a trace of the communication process. Here is what I
got:
Net-log: ["Opening" "tcp" "for" "smtp"]
Net-log: [none "220"]
Net-log: {220 localdomain eXtremail V1.5 release 4 rev1 ESMTP server
ready ...}
Net-log: [["HELO" system/network/host] "250"]
Net-log: "250 Hi, I am localdomain"
Net-log: "MAIL FROM: <[robert--muench--robertmuench--de]>"
Net-log: [none "250"]
Net-log: "250 Sender ok"
Net-log: "RCPT TO: <[robert--muench--robertmuench--de]>"
Net-log: [none "250"]
Net-log: "250 Folder ok"
Net-log: ["DATA" "354"]
Net-log: "354 Write mail. End with '<CR>.<CR>'"
Net-log: [none "250"]
Net-log: "250 Mail accepted"
Net-log: ["QUIT" "221"]
** User Error: Server error: tcp 250 Bye
** Near: close smtp-port
> Hope that this helps. Be sure and let me/us know what comes
> up with the extrememail smtp and 'send. --Scott Jones
I think Allens tip concerning the line-breaks might be solution I play
around with this idea and let you know. IMO the QUIT is done correctly,
right? Robert