bluetiger9 / SmtpClient-for-Qt

An SMTP Client writen in C++ for Qt. Allows applications to send emails (MIME with text, html, attachments, inline files, etc.) via SMTP. Supports SSL and SMTP authentication.
https://github.com/bluetiger9/SmtpClient-for-Qt/wiki
GNU Lesser General Public License v2.1
452 stars 227 forks source link

remove stray space after colon following MAIL FROM and RCPT TO #73

Closed mabrand closed 5 years ago

mabrand commented 5 years ago

Quoth https://www.ietf.org/rfc/rfc5321.txt:

Since it has been a common source of errors, it is worth noting that spaces are not permitted on either side of the colon following FROM in the MAIL command or TO in the RCPT command. The syntax is exactly as given above.

mabrand commented 5 years ago

6b676827fed3fb8d4580cd88bf62291ca4cbec1c seems to have missed these cases.

bluetiger9 commented 5 years ago

Merged. Thanks for the fix :)