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 /docs | |
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 'docs')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index cbbbefe31..07c4c0a22 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -1092,6 +1092,10 @@ SMTP mail request. The linked list should be a fully valid list of \fBstruct curl_slist\fP structs properly filled in. Use \fIcurl_slist_append(3)\fP to create the list and \fIcurl_slist_free_all(3)\fP to clean up an entire list. +Each recipient in SMTP lingo is specified with angle brackets (<>), but should +you not use an angle bracket as first letter libcurl will assume you provide a +single email address only and enclose that with angle brackets for you. + (Added in 7.20.0) .SH TFTP OPTIONS .IP CURLOPT_TFTP_BLKSIZE |