diff options
author | Eduardo Chappa <chappa@washington.edu> | 2018-12-08 18:58:49 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2018-12-08 18:58:49 -0700 |
commit | ac4c41f00814a6c91d7fb440e2e3339f14ffd638 (patch) | |
tree | 54de44ce739e0dd51480692db786a1abe1a7e927 /imap | |
parent | 997ceda29bf9c8e54a10f5c0cec7297b067ad5e7 (diff) | |
download | alpine-ac4c41f00814a6c91d7fb440e2e3339f14ffd638.tar.xz |
* Alpine would not report an error correctly in the case that there was
a failure using an SMTP server. This was due to c-client sending a
RSET command after the failure and Alpine reporting the reply of this
command.
Diffstat (limited to 'imap')
-rw-r--r-- | imap/src/c-client/smtp.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/imap/src/c-client/smtp.c b/imap/src/c-client/smtp.c index 405f8738..d6b46a56 100644 --- a/imap/src/c-client/smtp.c +++ b/imap/src/c-client/smtp.c @@ -1,5 +1,5 @@ /* ======================================================================== - * Copyright 2015 Eduardo Chappa + * Copyright 2015-2018 Eduardo Chappa * Copyright 2008 Mark Crispin * ======================================================================== */ @@ -11,7 +11,7 @@ * * Date: 27 July 1988 * Last Edited: 19 November 2008 (Crispin) - * Last Edited: 16 January 2015 (Chappa) + * Last Edited: 8 December 2018 (Chappa) * * Previous versions of this file were * @@ -486,7 +486,12 @@ long smtp_mail (SENDSTREAM *stream,char *type,ENVELOPE *env,BODY *body) case SMTPOK: /* looks good */ break; default: /* other failure */ - smtp_send (stream,"RSET",NIL); + /* Do not RSET connection at this time, or else client + * will not see failure, and will see the reply to a + * RSET command, which is typically success, and not the + * error that made us come here, in the first place. + * smtp_send (stream,"RSET",NIL); + */ return NIL; } /* negotiate the recipients */ |