Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-02 | Updated copyright year for recent changes | Steve Holme | |
2014-01-03 | curl_easy_setopt.3: fix formatting mistakes | Christian Weisgerber | |
This fixes two markup typos I noticed in curl_easy_setopt.3. (The use of bold vs. italics seems a bit inconsistent in that page, but it should at least be valid man syntax.) | |||
2014-01-02 | examples: Added IMAP SEARCH example | Steve Holme | |
2014-01-02 | examples: Added IMAP EXAMINE mailbox folder example | Steve Holme | |
2014-01-01 | examples: Updated SMTP multi example to be more realistic | Steve Holme | |
Updated the contents of the email and payload callback as per the IMAP and other SMTP examples. | |||
2014-01-01 | examples: Corrected unescaped backslash in imap-store.c | Steve Holme | |
2014-01-01 | examples: Update SMTP TLS example mail content to be RFC-2821 compliant | Steve Holme | |
...and made some minor coding style changes to better match the curl coding standards as well as the other email related examples. | |||
2014-01-01 | examples: Added IMAP APPEND example | Steve Holme | |
2014-01-01 | examples: Added IMAP STORE example | Steve Holme | |
2013-12-31 | examples: Added IMAP LIST mailbox example | Steve Holme | |
2013-12-31 | examples: Updated IMAP fetch example for libcurl 7.30.0 | Steve Holme | |
2013-12-31 | examples: Rename before adding additional email examples | Steve Holme | |
2013-12-31 | examples: Added SMTP EXPN command example | Steve Holme | |
2013-12-31 | examples: Added SMTP email verification example | Steve Holme | |
2013-12-31 | examples: Updated copyright year for recent edits | Steve Holme | |
2013-12-31 | examples: Corrected incorrect indentation in smtp-multi.c | Steve Holme | |
2013-12-31 | examples: Updated SMTP examples to set CURLOPT_UPLOAD | Steve Holme | |
2013-12-29 | curl_easy_setopt.3: Added SMTP information to CURLOPT_INFILESIZE_LARGE | Steve Holme | |
Although added to CURLOPT_INFILESIZE in commit ee3d3adc6fe155 it was never added to CURLOPT_INFILESIZE_LARGE. | |||
2013-12-26 | FILE: we don't support paused transfers using this protocol | Daniel Stenberg | |
Make sure that we detect such attempts and return a proper error code instead of silently handling this in problematic ways. Updated the documentation to mention this limitation. Bug: http://curl.haxx.se/bug/view.cgi?id=1286 | |||
2013-12-24 | TheArtOfHttpScripting: major update, converted layout and more | Daniel Stenberg | |
2013-12-22 | docs: mention CURLOPT_MAX_RECV/SEND_SPEED_LARGE don't work for FILE:// | Daniel Stenberg | |
2013-12-19 | curl_easy_setopt: Fixed OAuth 2.0 Bearer option name | Steve Holme | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1313 Reported-by: Viktor Szakáts | |||
2013-12-18 | curl.1: remove URL encoding phrase from --data description | Daniel Stenberg | |
... it could be misleading a reader into thinking it _has_ to be encoded. | |||
2013-12-18 | RELEASE-PROCEDURE: new document | Daniel Stenberg | |
2013-12-16 | THANKS: add contributors from 7.34.0 release | Daniel Stenberg | |
24 new great friends | |||
2013-12-15 | curl.1 document -J doesn't %-decode | Daniel Stenberg | |
...also added as KNOWN_BUG #87 with reference to bug #1294 | |||
2013-12-14 | curl_easy_setopt: clarify some USERPWD and PROXYUSERPWD details | Daniel Stenberg | |
2013-12-14 | login options: remove the ;[options] support from CURLOPT_USERPWD | Daniel Stenberg | |
To avoid the regression when users pass in passwords containing semi- colons, we now drop the ability to set the login options with the same options. Support for login options in CURLOPT_USERPWD was added in 7.31.0. Test case 83 was modified to verify that colons and semi-colons can be used as part of the password when using -u (CURLOPT_USERPWD). Bug: http://curl.haxx.se/bug/view.cgi?id=1311 Reported-by: Petr Bahula Assisted-by: Steve Holme Signed-off-by: Daniel Stenberg <daniel@haxx.se> | |||
2013-12-02 | nss: use a better API for controlling SSL version | Kamil Dudka | |
This change introduces a dependency on NSS 3.14+. | |||
2013-11-30 | curl_easy_getinfo: Post CURLINFO_TLS_SESSION tidy up | Steve Holme | |
1) Renamed curl_tlsinfo to curl_tlssessioninfo as discussed on the mailing list. 2) Renamed curl_ssl_backend to curl_sslbackend so it doesn't follow our function naming convention. 3) Updated sessioninfo.c example accordingly. | |||
2013-11-29 | parseconfig: dash options can't specified with colon or equals | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1297 Reported-by: Michael Osipov | |||
2013-11-29 | curl.1: -G also takes --data-urlencode data | Daniel Stenberg | |
2013-11-28 | sessioninfo.c: Added sample code for CURLINFO_TLS_SESSION | Christian Grothoff | |
Added a simple example to show how one can use CURLINFO_TLS_SESSION for obtaining extensive TLS certificate information. | |||
2013-11-27 | KNOWN_BUGS: #86: Disconnect commands may not be sent by IMAP, POP3 and SMTP | Steve Holme | |
2013-11-22 | symbols-in-versions: Added missing CURLSSLBACKEND_* symbols | Steve Holme | |
2013-11-22 | symbols-in-versions: Fixed missing CURLINFO_TLS_SESSION | Steve Holme | |
2013-11-21 | curl_easy_getinfo: Added CURLINFO_TLS_SESSION for accessing TLS internals | Christian Grothoff | |
Added new API for returning a SSL backend type and pointer, in order to allow access to the TLS internals, that may then be used to obtain X509 certificate information for example. | |||
2013-11-17 | smtp: Changed the default command to HELP when no options are specified | Steve Holme | |
Otherwise a NOOP operation would be performed which a) only returns a single line response and not a multiline response where -I needs to be used, and b) provides an inconsistent user experience compared to that of the POP3 and IMAP protocols. | |||
2013-11-15 | DOCS: Updated curl_easy_setopt.3 following recent SMTP changes | Steve Holme | |
* Added information about the verify and expand commands to CURLOPT_MAIL_RCPT. * Reworked CURLOPT_CUSTOMREQUEST section, adding information about IMAP and SMTP custom commands. | |||
2013-11-15 | DOCS: Updated manpage following recent SMTP modifications | Steve Holme | |
* Added SMTP section to --request * Expanded --mail-rcpt to describe the usage when using the verify and expand commands. | |||
2013-11-12 | darwinssl: PKCS#12 import feature now requires Lion or later | Nick Zitzmann | |
It turns out that some of the constants necessary to make this feature work are missing from Snow Leopard's Security framework even though they are defined in the headers. Bug: http://curl.haxx.se/mail/lib-2013-11/0076.html Reported by: myriachan | |||
2013-11-12 | TODO: Added auth= in URLs to the wish list for HTTP | Steve Holme | |
2013-11-12 | curl_easy_setopt: Added the ability to set the login options separately | Steve Holme | |
Rather than set the authentication options as part of the login details specified in the URL, or via the older CURLOPT_USERPWD option, added a new libcurl option to allow the login options to be set separately. | |||
2013-11-12 | curl.1: mention that -O does no URL decoding | Daniel Stenberg | |
2013-11-12 | curl_easy_setopt.3: clarify CURLOPT_SSL_VERIFYHOST documentation | Tomas Hoger | |
- better describe what happens when 1 is specified as parameter - clarify what "is ignored" means for NSS builds | |||
2013-11-05 | KNOWN_BUGS: STARTTRANSFER for POST requests | Daniel Stenberg | |
added 85. Wrong STARTTRANSFER timer accounting for POST requests | |||
2013-11-03 | DOCS: Expanded --request description to include POP3 and IMAP details | Steve Holme | |
2013-11-03 | DOCS: Updated --list-only description to include POP3 | Steve Holme | |
Additionally corrected typos in --oauth2-bearer protocol list. | |||
2013-10-30 | TODO: Removed the 'Graceful base64 decoding failure' sections | Steve Holme | |
Updated following the recent changes to support graceful failures during the authentication phrase. | |||
2013-10-30 | NSS: support for CERTINFO feature | Patrick Monnerat | |