Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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: 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-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-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 | 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 | |
2013-09-19 | tests: Added SMTP large message SIZE test | Steve Holme | |
2013-09-19 | tests: Fixed smtp mail from addresses | Steve Holme | |
2013-09-17 | cookies: add expiration | YAMADA Yasuharu | |
Implement: Expired Cookies These following situation, curl removes cookie(s) from struct CookieInfo if the cookie expired. - Curl_cookie_add() - Curl_cookie_getlist() - cookie_output() | |||
2013-09-16 | tests: Fixed test 1406 following recent changes in ftpserver.pl | Steve Holme | |
By default the mail server doesn't send the SIZE capability but instead it has to be specified as a supported capability. | |||
2013-09-16 | tests: Added test for SMTP SIZE capability | Steve Holme | |
2013-09-15 | ftpserver.pl: Added support for SMTP HELO command | Steve Holme | |
...and updated test902 as explicit HELO response is no longer required. | |||
2013-09-14 | ftpserver.pl: Moved POP3 USER and PASS handlers into own functions | Steve Holme | |
2013-09-14 | tests: Updated descriptions to be more meaningful | Steve Holme | |
2013-09-14 | tests: Updated descriptions to be more meaningful | Steve Holme | |
2013-09-09 | tests: Added test for POP3 TOP command | Steve Holme | |
2013-09-09 | tests: Added test for POP3 UIDL command | Steve Holme | |
2013-09-08 | ftpserver.pl: Corrected POP3 LIST as message numbers should be contiguous | Steve Holme | |
The message numbers given in the LIST response are an index into the list, which are only valid for the current session, rather than being a unique message identifier. An index would only be missing from the LIST response if a DELE command had been issued within the same session and had not been committed by the end of session QUIT command. Once committed the POP3 server will regenerate the message numbers in the next session to be contiguous again. As such our LIST response should list message numbers contiguously until we support a DELE command in the same session. Should a POP3 user require the unique message ID for any or all messages then they should use the extended UIDL command. This command will be supported by the test ftpserver in an upcoming commit. | |||
2013-09-08 | tests: Updated descriptions to be more meaningful | Steve Holme | |
2013-09-08 | tests: Added test for POP3 NOOP command | Steve Holme | |
2013-09-08 | tests: Added test for POP3 STAT command | Steve Holme | |
2013-09-07 | tests: Added test for POP3 DELE command | Steve Holme | |
2013-09-06 | urlglob: improved error messages and column number on bad use | Daniel Stenberg | |
Introduce a convenience macro and keep of the column better so that it can point out the offending column better. Updated test 75 accordingly. | |||
2013-08-31 | tests: Added test for IMAP CHECK command | Steve Holme | |
2013-08-30 | tests: Added tests for IMAP CREATE, DELETE and RENAME commands | Steve Holme | |
2013-08-28 | tests: Added test for IMAP SEARCH command | Steve Holme | |
2013-08-22 | TFTP: make the CURLOPT_LOW_SPEED* options work | Daniel Stenberg | |
... this also makes sure that the progess callback gets called more often during TFTP transfers. Added test 1238 to verify. Bug: http://curl.haxx.se/bug/view.cgi?id=1269 Reported-by: Jo3 | |||
2013-08-20 | test1237: verify 1000+ letter user name + passwords | Daniel Stenberg | |
2013-08-16 | glob: error out on range overflow | Daniel Stenberg | |
The new multiply() function detects range value overflows. 32bit machines will overflow on a 32bit boundary while 64bit hosts support ranges up to the full 64 bit range. Added test 1236 to verify. Bug: http://curl.haxx.se/bug/view.cgi?id=1267 Reported-by: Will Dietz |