Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-20 | Fix build warnings. | Ben Greear | |
Signed-off-by: Ben Greear <greearb@candelatech.com> | |||
2010-05-18 | Fixed a memory leak in the SMTP torture tests | Dan Fandrich | |
2010-04-19 | Remove null-effect leftover code. | monnerat | |
2010-04-19 | Merge branch 'master' of github.com:bagder/curl | monnerat | |
2010-04-19 | Implement SMTP authentication | monnerat | |
2010-04-16 | Curl_setup_transfer: no longer returns anything | Daniel Stenberg | |
This function could only return CURLE_OK and by changing it to a void instead, we can simplify code all over. | |||
2010-04-02 | fixed compiler warnings | Ben Greear | |
2010-03-29 | use (s)size_t for string lengths to fix compiler warns | Daniel Stenberg | |
2010-03-29 | fix smtp compile warning | Ben Greear | |
Use ssize_t instead of int for the Curl_smtp_escape_eob nread argument. Signed-off-by: Ben Greear <greearb@candelatech.com> | |||
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2010-03-02 | - Made the pingpong timeout code properly deal with the response timeout AND | Daniel Stenberg | |
the global timeout if set. Also, as was reported in the bug report #2956437 by Ryan Chan, the time stamp to use as basis for the per command timeout was not set properly in the DONE phase for FTP (and not for SMTP) so I fixed that just now. This was a regression compared to 7.19.7 due to the conversion of FTP code over to the generic pingpong concepts. http://curl.haxx.se/bug/view.cgi?id=2956437 | |||
2010-02-25 | Fixed a couple of out of memory leaks and a segfault in the SMTP code. | Dan Fandrich | |
2010-02-22 | _ Adjusted RFC821 HELO fallback and enabled test804 | Patrick Monnerat | |
2010-02-22 | - Proper handling of STARTTLS on SMTP, taking CURLUSESSL_TRY into account. | Patrick Monnerat | |
- SMTP falls back to RFC821 HELO when EHLO fails (and SSL is not required). - Use of true local host name (i.e.: via gethostname()) when available, as default argument to SMTP HELO/EHLO. - Test case 804 for HELO fallback. | |||
2010-02-20 | - Fixed the SMTP compliance by making sure RCPT TO addresses are specified | Daniel Stenberg | |
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. | |||
2010-02-20 | - I made the SMTP code expect a 250 response back from the server after the | Daniel Stenberg | |
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 transfer is still not doable in a non-blocking way so this waiting for 250 is unfortunately made blockingly. | |||
2010-02-12 | - Jack Zhang reported a problem with SMTP: we wrongly used multiple addresses | Daniel Stenberg | |
in the same RCPT TO line, when they should be sent in separate single commands. I updated test case 802 to verify this. - I also fixed a bad use of my_setopt_str() of CURLOPT_MAIL_RCPT in the curl tool which made it try to output it as string for the --libcurl feature which could lead to crashes. | |||
2010-01-25 | make Curl_handler_*_proxy definition static | Yang Tse | |
2009-12-31 | turned CURLOPT_MAIL_RCPT into a curl_slist list instead to support multiple | Daniel Stenberg | |
receivers, and made the command line tool thus support the option specified many times | |||
2009-12-30 | modified to get the EHLO domain from the path part of the URL instead of the | Daniel Stenberg | |
user name | |||
2009-12-30 | moved the SMTP payload escape function into Curl_smtp_escape_eob and put | Daniel Stenberg | |
it in smtp.c | |||
2009-12-30 | (SMTP) support DATA better in the server and make sure to "escape" CRLF.CRLF | Daniel Stenberg | |
sequences in uploaded data. The test server doesn't "decode" escaped dot-lines but instead test cases must be written to take them into account. Added test case 803 to verify dot-escaping. | |||
2009-12-30 | VMS specific preprocessor symbol checking adjustments | Yang Tse | |
2009-12-25 | first shot at actually doing the SMTP upload as well, not doing the proper | Daniel Stenberg | |
end-of-body treatment | |||
2009-12-20 | remove some unused code | Daniel Stenberg | |
2009-12-14 | Fix compiler warnings | Yang Tse | |
2009-12-12 | introducing IMAP, POP3 and SMTP support (still lots of polish left to do) | Daniel Stenberg | |