diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-02-20 22:29:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-02-20 22:29:59 +0000 |
commit | a4a60afabbd65e674222a6df6ccd09c1b358ab77 (patch) | |
tree | 82dffbc3278c15912092c662c735972bef8d5dc2 /CHANGES | |
parent | a434cb43e807753730d815096464c9c7cb3f1596 (diff) | |
download | curl-a4a60afabbd65e674222a6df6ccd09c1b358ab77.tar.gz |
- Fixed the SMTP compliance by making sure RCPT TO addresses are specified
properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now
get angle bracket wrapping automatically by libcurl unless the recipient
starts with an angle bracket as then the app is assumed to deal with that
properly on its own.
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -7,6 +7,12 @@ Changelog Daniel Stenberg (20 Feb 2010) +- Fixed the SMTP compliance by making sure RCPT TO addresses are specified + properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now + get angle bracket wrapping automatically by libcurl unless the recipient + starts with an angle bracket as then the app is assumed to deal with that + properly on its own. + - I made the SMTP code expect a 250 response back from the server after the full DATA has been sent, and I modified the test SMTP server to also send that response. As usual, the DONE operation that is made after a completed |