xpepermint / smtp-client

Simple, promisified, protocol-based SMTP client for Node.js.
36 stars 13 forks source link

Fix #9, missing dot stuffing #10

Closed t3r closed 3 years ago

t3r commented 3 years ago

Before sending a line of mail text, the SMTP client checks the first character of the line. If it is a period, one additional period is inserted at the beginning of the line.

Ref: https://tools.ietf.org/html/rfc5321#section-4.5.2

xpepermint commented 3 years ago

Thanks