On Mon, Nov 29, 1999 at 03:24:16PM +0100, Paulo Jan wrote:

You seem to have a typo: I've pointed it out in the diff listing below:

74,77d73
< void smtp_etrn()
< {
<   out("250 ok\r\n");
< }
236,237c232
<   smtp_greet("250-"); 
<   out("\r\n250-PIPELINING\r\n250 8BITMIME\r\n250 ETRN\r\n");

The above line is wrong. There should be a dash '-' between
250 and 8BITMIME. With a multiline response, all but the
last numeric code must be followed by a dash, to indicate
continuation of the response. I don't know whether it was my
mistake when posting the patch, but if it was, I apologise.
Change that, and you'll be fine.

---
>   smtp_greet("250-"); out("\r\n250-PIPELINING\r\n250 8BITMIME\r\n");
413d407
< , { "etrn", smtp_etrn, flush }

Reply via email to