summaryrefslogtreecommitdiff
path: root/tests/data/test803
Commit message (Collapse)AuthorAgeFilesLines
* imap: change from "FETCH" to "UID FETCH"Nicklas Avén2018-09-061-1/+1
| | | | | | | | | | | | ... and add "MAILINDEX". As described in #2789, this is a suggested solution. Changing UID=xx to actually get mail with UID xx and add "MAILINDEX" to get a mail with a special index in the mail box (old behavior). So MAILINDEX=1 gives the first non deleted mail in the mail box. Fixes #2789 Closes #2815
* tests: Added "Clear Text" authentication keywordSteve Holme2014-03-301-0/+1
|
* test801 to test807: fix protocol section line endingsYang Tse2013-03-111-4/+4
|
* imap: Added test802 and test803 for UIDVALIDITY verificationJiri Hruska2013-03-101-0/+44
| | | | | Added one test for a request with matching UIDVALIDITY and one which is a mismatched request that will fail.
* email-tests: Renamed the SMTP tests to be in the range 900-906Steve Holme2013-03-101-64/+0
| | | | | | Continued segregating the email protocol tests, into their own protocol based ranges, in preparation of adding more e-mail related tests to the test suite.
* SMTP tests: updated MAIL FROM useDaniel Stenberg2010-12-221-2/+2
| | | | | | They were all wrong previously since none used the <brackets> they should for MAIL FROM. Now libcurl adds them itself if the app doesn't so they end up wrong less easy.
* - Fixed the SMTP compliance by making sure RCPT TO addresses are specifiedDaniel Stenberg2010-02-201-1/+1
| | | | | | | 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.
* modified to get the EHLO domain from the path part of the URL instead of theDaniel Stenberg2009-12-301-1/+1
| | | | user name
* (SMTP) support DATA better in the server and make sure to "escape" CRLF.CRLFDaniel Stenberg2009-12-301-0/+64
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.