Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-25 | tests: Added SMTP OAUTH2 authentication with initial response test | Steve Holme | |
2013-10-25 | tests: Added SMTP NTLM authentication with initial response test | Steve Holme | |
2013-10-25 | tests: Added SMTP OAUTH2 authentication test | Steve Holme | |
2013-10-25 | tests: Added SMTP DIGEST-MD5 authentication test | Steve Holme | |
2013-10-25 | tests: Regrouped SMTP authentication tests | Steve Holme | |
2013-10-23 | ftpserver.pl: Added support for empty pop3 authentication data | Steve Holme | |
2013-10-23 | tests: Added POP3 OAUTH2 authentication test | Steve Holme | |
2013-10-23 | tests: Added empty response support to custom replies | Steve Holme | |
...and fixed up test869 as DIGEST-MD transcript is as follows: S: Challenge C: Authentication String S: Continue Response C: Empty String | |||
2013-10-23 | tests: Added POP3 DIGEST-MD5 authentication test | Steve Holme | |
2013-10-22 | test1240: verify 867b52a7ac52 (glob ranges with text to the right) | Daniel Stenberg | |
2013-10-20 | ftpserver.pl: Fixed syntax error from commit 5b31b38c27bb7a | Steve Holme | |
2013-10-19 | test866: Fixed user response from commit 7f7fbe7fbdb449 | Steve Holme | |
2013-10-19 | ftpserver.pl: Fixed processing of POP3 authentication strings | Steve Holme | |
...and corrected response when check fails from 500 to -ERR. | |||
2013-10-19 | tests: Added POP3 NTLM authentication test | Steve Holme | |
2013-10-19 | tests: Added POP3 CRAM-MD5 authentication test | Steve Holme | |
2013-10-19 | tests: Added POP3 login authentication test | Steve Holme | |
2013-10-19 | tests: Added POP3 plain authentication test | Steve Holme | |
2013-10-19 | tests: Added POP3 APOP authentication test | Steve Holme | |
2013-10-19 | ftpserver.pl: Added support for APOP POP3 authentication | Steve Holme | |
2013-10-19 | tests: Added POP3 RSET test | Steve Holme | |
2013-10-15 | test906: Fixed failing test on some platforms | Steve Holme | |
Bug: http://sourceforge.net/p/curl/bugs/1291 Reported-by: David Walser | |||
2013-10-07 | test1239: verify 4cd444e01ad and the simulated 304 response | Daniel Stenberg | |
2013-09-29 | tests: Fixed typos from commit 25a0c96a494297 | Steve Holme | |
2013-09-29 | tests: Updated email addresses in SMTP tests following recent changes | Steve Holme | |
2013-09-29 | test909: Removed custom EHLO response after recent changes | Steve Holme | |
...as it is no longer required following capability and authentication changes and is now causing problems following commit 49341628b50007 as the test number is obtained from the client address in the EHLO. | |||
2013-09-29 | ftpserver.pl: Fixed compilation error from commit 49341628b50007 | Steve Holme | |
2013-09-29 | ftpserver.pl: Moved specifying the test number from the RCPT address | Steve Holme | |
...to the client address as this frees the RCPT strings to contain just an email address and by passing the test number into curl as the client address remains consistent with POP3 and IMAP tests as they are specified in the URL. | |||
2013-09-29 | ftpserver.pl: Added unwanted argument check to SMTP DATA command handler | Steve Holme | |
2013-09-23 | test906: Fixed type-2 response | Steve Holme | |
2013-09-23 | test915: Corrected test number from commit 22bccb0edaf041 | Steve Holme | |
2013-09-23 | test906: Fixed type-1 message not handled error | Steve Holme | |
...from commit f81d1e16664976 due to copy paste error. | |||
2013-09-22 | tests: Added SMTP AUTH NTLM test | Steve Holme | |
2013-09-22 | tests: Added SMTP multiple and invalid --mail-rcpt test | Steve Holme | |
2013-09-22 | tests: Added SMTP multiple --mail-rcpt test | Steve Holme | |
2013-09-22 | tests: Added SMTP invalid --mail-rcpt test | Steve Holme | |
2013-09-22 | tests: Regrouping of SMTP tests | Steve Holme | |
2013-09-22 | test1112: Increase the timeout from 7s to 16s | Benoit Sigoure | |
As someone reported on the mailing list a while back, the hard-coded arbitrary timeout of 7s in test 1112 is not sufficient in some build environments. At Arista Networks we build and test curl as part of our automated build system, and we've run into this timeout 170 times so far. Our build servers are typically quite busy building and testing a lot of code in parallel, so despite being beefy machines with 32 cores and 128GB of RAM we still hit this 7s timeout regularly. URL: http://curl.haxx.se/mail/lib-2010-02/0200.html | |||
2013-09-22 | tests: Fixed smtp rcpt to addresses | Steve Holme | |
2013-09-22 | ftpserver.pl: Expanded the SMTP RCPT handler to validate TO addresses | Steve Holme | |
RCPT_smtp() will now check for a correctly formatted TO address which allows for invalid recipient addresses to be added. | |||
2013-09-22 | ftpserver.pl: Added cURL SMTP server detection to HELO command handler | Steve Holme | |
As curl will send a HELO command after an negative EHLO response, added the same detection from commit b07709f7417c3e to the HELO handler to ensure the test server is identified correctly and an upload isn't performed. | |||
2013-09-22 | ftpserver.pl: Corrected response code for successful RCPT command | Steve Holme | |
2013-09-22 | ftpserver.pl: Moved invalid RCPT TO: address detection to RCPT handler | Steve Holme | |
Rather than detecting the TO address as missing in the DATA handler, moved the detection to the RCPT command handler where an error response can be generated. | |||
2013-09-21 | ftpserver.pl: Moved cURL SMTP server detection into EHLO command handler | Steve Holme | |
Moved the special SMTP server detection code from the DATA command handler, which happens further down the operation chain after EHLO, MAIL and RCPT commands, to the EHLO command as it is the first command to be generated by a SMTP operation as well as containing the special "verifiedserver" string from the URL. This not only makes it easier and quicker to detect but also means that cURL doesn't need to specify "verifiedserver" as --mail-from and --mail-rcpt arguments. More importantly, this also makes the upcoming verification changes to the RCPT handler easier to implement. | |||
2013-09-21 | test1415: adjusted to work for 32bit time_t | Daniel Stenberg | |
The libcurl date parser returns INT_MAX for all dates > 2037 so this test is now made to use 2037 instead of 2038 to work the same for both 32bit and 64bit time_t systems. | |||
2013-09-21 | tests: Reworked existing SMTP tests to be single recipient based | Steve Holme | |
...in preparation of upcoming multiple recipient tests. | |||
2013-09-20 | ftpserver.pl: Corrected SMTP QUIT response to be more realistic | Steve Holme | |
2013-09-20 | ftpserver.pl: Moved SMTP RCPT response text into command handler | Steve Holme | |
2013-09-20 | tests: Added SMTP invalid --mail-from test | Steve Holme | |
2013-09-19 | tests: Updated SMTP AUTH tests to use the new AUTH directive | Steve Holme | |
...rather than specify a customised EHLO response. | |||
2013-09-19 | tests: Corrected test913 as the QUIT response is received | Steve Holme | |