1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

TODO: move "CURLOPT_MAIL_CLIENT" to SMTP section

This commit is contained in:
Daniel Stenberg 2016-08-09 09:53:06 +02:00
parent 546d4a3505
commit 4e1ebe63cf

View File

@ -28,7 +28,6 @@
1.10 Support IDNA2008 1.10 Support IDNA2008
1.11 minimize dependencies with dynamicly loaded modules 1.11 minimize dependencies with dynamicly loaded modules
1.12 have form functions use CURL handle argument 1.12 have form functions use CURL handle argument
1.13 Add CURLOPT_MAIL_CLIENT option
1.14 Typesafe curl_easy_setopt() 1.14 Typesafe curl_easy_setopt()
1.15 TCP Fast Open 1.15 TCP Fast Open
1.16 Try to URL encode given URL 1.16 Try to URL encode given URL
@ -79,6 +78,7 @@
7. SMTP 7. SMTP
7.1 Pipelining 7.1 Pipelining
7.2 Enhanced capability support 7.2 Enhanced capability support
7.3 Add CURLOPT_MAIL_CLIENT option
8. POP3 8. POP3
8.1 Pipelining 8.1 Pipelining
@ -271,16 +271,6 @@
to use and less error-prone. Probably easiest by splitting it into several to use and less error-prone. Probably easiest by splitting it into several
function calls. function calls.
1.13 Add CURLOPT_MAIL_CLIENT option
Rather than use the URL to specify the mail client string to present in the
HELO and EHLO commands, libcurl should support a new CURLOPT specifically for
specifying this data as the URL is non-standard and to be honest a bit of a
hack ;-)
Please see the following thread for more information:
https://curl.haxx.se/mail/lib-2012-05/0178.html
1.14 Typesafe curl_easy_setopt() 1.14 Typesafe curl_easy_setopt()
One of the most common problems in libcurl using applications is the lack of One of the most common problems in libcurl using applications is the lack of
@ -590,6 +580,17 @@ to provide the data to send.
Add the ability, for an application that uses libcurl, to obtain the list of Add the ability, for an application that uses libcurl, to obtain the list of
capabilities returned from the EHLO command. capabilities returned from the EHLO command.
7.3 Add CURLOPT_MAIL_CLIENT option
Rather than use the URL to specify the mail client string to present in the
HELO and EHLO commands, libcurl should support a new CURLOPT specifically for
specifying this data as the URL is non-standard and to be honest a bit of a
hack ;-)
Please see the following thread for more information:
https://curl.haxx.se/mail/lib-2012-05/0178.html
8. POP3 8. POP3
8.1 Pipelining 8.1 Pipelining