diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-05-04 09:58:32 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-05-04 10:12:01 +0100 |
commit | 92ef5f19c801c8596596cad666a583d2808a9aff (patch) | |
tree | 277f09501e23ce6f0b562569d0cb48740ae9209b | |
parent | 99b40451836dfea2d5dce2ada4fab15b2ab5bfb2 (diff) |
smtp: Updated RFC-2821 references to RFC-5321
-rw-r--r-- | lib/smtp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/smtp.c b/lib/smtp.c index ae63e7beb..6cd8d0bf1 100644 --- a/lib/smtp.c +++ b/lib/smtp.c @@ -564,7 +564,7 @@ static CURLcode smtp_perform_mail(struct connectdata *conn) /* Calculate the FROM parameter */ if(!data->set.str[STRING_MAIL_FROM]) - /* Null reverse-path, RFC-2821, sect. 3.7 */ + /* Null reverse-path, RFC-5321, sect. 3.6.3 */ from = strdup("<>"); else if(data->set.str[STRING_MAIL_FROM][0] == '<') from = aprintf("%s", data->set.str[STRING_MAIL_FROM]); @@ -1797,7 +1797,7 @@ CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread) they are sent as CRLF.. instead, as a . on the beginning of a line will be deleted by the server when not part of an EOB terminator and a genuine CRLF.CRLF which isn't escaped will wrongly be detected as end of - data by the server. + data by the server */ ssize_t i; ssize_t si; @@ -1841,7 +1841,7 @@ CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread) smtp->trailing_crlf = FALSE; } - /* Do we have a match for CRLF. as per RFC-2821, sect. 4.5.2 */ + /* Do we have a match for CRLF. as per RFC-5321, sect. 4.5.2 */ if(SMTP_EOB_FIND_LEN == smtp->eob) { /* Copy the replacement data to the target buffer */ memcpy(&data->state.scratch[si], SMTP_EOB_REPL, SMTP_EOB_REPL_LEN); |