summaryrefslogtreecommitdiff
path: root/tests/data/test810
Commit message (Collapse)AuthorAgeFilesLines
* test810: Updated to use new IMAP URL query string functionalitySteve Holme2014-04-181-3/+2
|
* tests: Added "Clear Text" authentication keywordSteve Holme2014-03-301-0/+1
|
* tests: Updated descriptions to be more meaningfulSteve Holme2013-09-141-1/+1
|
* tests: Added test for IMAP SEARCH commandSteve Holme2013-08-281-0/+43
|
* email-tests: Renamed the POP3 tests to be in the range 850-857Steve Holme2013-03-101-51/+0
| | | | | | Started segregating the email protocol tests, into their own protocol based ranges, in preparation of adding more e-mail related tests to the test suite.
* tests: Updated pop3 tests for change in auth mechanism detectionSteve Holme2012-06-041-1/+1
|
* pop3 test server: allow pop3 test server verification to succeed againYang Tse2012-05-301-1/+0
| | | | | | Introduce SUPPORTCAPA and SUPPORTAUTH config commands to allow further pop3 test server expansion for tests that require CAPA or AUTH support, although this will need some extra work to make it fully functional.
* pop3: Added support for SASL based authentication mechanism detectionSteve Holme2012-05-271-0/+2
| | | | | | | | | | | | | | | Added support for detecting the supported SASL authentication mechanisms via the AUTH command. There are two ways of detecting them, either by using the AUTH command, that will return -ERR if not supported or by using the CAPA command which will return SASL and the list of mechanisms if supported, not include SASL if SASL authentication is not supported or -ERR if the CAPA command is not supported. As such it seems simpler to use the AUTH command and fallback to normal clear text authentication if the the command is not supported. Additionally updated the test cases to return -ERR when the AUTH command is encountered. Additional test cases will be added when support for the individual authentication mechanisms is added.
* POP3: fix end of body detectionDaniel Stenberg2011-11-291-1/+6
| | | | | | | | | | Curl_pop3_write() now has a state machine that scans for the end of a POP3 body so that the CR LF '.' CR LF sequence can come in everything from one up to five subsequent packets. Test case 810 is modified to use SLOWDOWN which makes the server pause between each single byte and thus makes the POP3 body get sent to curl basically one byte at a time.
* [pop3] remove extra space in LIST commandOri Avtalion2011-06-211-1/+1
| | | | Some servers, e.g. mail.bezeqint.net:110, consider it a syntax error
* Added support for LISTing a single POP3 messageDan Fandrich2011-03-171-0/+45
Added tests for a number of POP3 LIST operations, including one that shows a curl problem when listing no messages, so is disabled.