Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-15 | ftpserver.pl: Fixed SMTP QUIT handler from dadc495540946e | Steve Holme | |
2013-09-15 | ftpserver.pl: Moved SMTP EHLO and QUIT handlers in own functions | 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-15 | ftpserver.pl: Added mailbox check to IMAP SELECT handler | Steve Holme | |
2013-09-15 | ftpserver.pl: Corrected invalid user details check | Steve Holme | |
...in both the IMAP LOGIN and POP3 PASS handlers introduced in commit 187ac693744949 and 84ad1569e5fc93 respectively. | |||
2013-09-14 | ftpserver.pl: Moved IMAP LOGIN handler into own function | Steve Holme | |
2013-09-14 | ftpserver.pl: Moved POP3 USER and PASS handlers into own functions | Steve Holme | |
2013-09-14 | ftpserver.pl: Corrected invalid argument check in POP3 TOP handler | Steve Holme | |
...which was accidentally introduced in commit 4d6ef6297ae9b6. | |||
2013-09-14 | ftpserver.pl: Added capability prerequisite for extended POP3 commands | Steve Holme | |
2013-09-14 | ftpserver.pl: Added support for IMAP NOOP command | Steve Holme | |
2013-09-12 | ftpserver.pl: Fixed missing comma from 7fd84b14d219b1 | Steve Holme | |
2013-09-12 | ftpserver.pl: Fixed variable error introduced in 7fd84b14d219b1 | Steve Holme | |
Global symbol "$mailbox" requires explicit package name | |||
2013-09-11 | ftpserver.pl: Added support for UID command | Steve Holme | |
2013-09-11 | ftpserver.pl: Added support for LSUB command | Steve Holme | |
2013-09-11 | ftpserver.pl: Added support for IMAP COPY command | Steve Holme | |
2013-09-11 | ftpserver.pl: Added support for IMAP CLOSE and EXPUNGE commands | Steve Holme | |
2013-09-11 | ftpserver.pl: Added support for POP3 RSET command | Steve Holme | |
2013-09-11 | ftpserver.pl: Added the ability to remember what messages are deleted | Steve Holme | |
...as this will be required for IMAP CLOSE and EXPUNGE commands as well as the POP3 RSET command. | |||
2013-09-09 | ftpserver.pl: Added support for POP3 TOP command | Steve Holme | |
2013-09-09 | ftpserver.pl: Added support for POP3 UIDL command | Steve Holme | |
2013-09-08 | ftpserver.pl: Fixed empty array checks | Steve Holme | |
...from commits 28427b408326a1 and e8313697b6554b. | |||
2013-09-08 | ftpserver: Reworked AUTH support to allow for specifying the mechanisms | Steve Holme | |
Renamed SUPPORTAUTH to AUTH and added support for specifying a list of supported SASL mechanisms to return to the client. Additionally added the directive to the FILEFORMAT document. | |||
2013-09-08 | ftpserver: Reworked CAPA support to allow for specifying the capabilities | Steve Holme | |
Renamed SUPPORTCAPA to CAPA and added support for specifying a list of supported capabilities to return to the client. Additionally added the directive to the FILEFORMAT document. | |||
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 | ftpserver.pl: Added support for POP3 NOOP command | Steve Holme | |
2013-09-08 | ftpserver.pl: Fixed 'Use of uninitialized value $args in string ne' | Steve Holme | |
2013-09-08 | ftpserver.pl: Added support for POP STAT command | Steve Holme | |
2013-09-08 | ftpserver.pl: Moved POP3 QUIT handler into own function | Steve Holme | |
2013-09-08 | ftpserver.pl: Reordered the POP3 handlers to be alphabetical | Steve Holme | |
In preparation for additional POP3 tests, re-ordered the command function defintions to be sorted alphabetically. | |||
2013-09-08 | ftpserver.pl: Corrected misaligned indentation in POP3 handlers | Steve Holme | |
Fixed incorrect indentation used in both the RETR_pop3 and LIST_pop3 functions which was 5 and 9 characters rather than 4 and 8. | |||
2013-09-07 | ftpserver.pl: Added support for POP3 DELE command | Steve Holme | |
2013-08-31 | ftpserver.pl: Added support for the IMAP CHECK command | Steve Holme | |
2013-08-31 | ftpserver.pl: Corrected flawed logic in commit 1ca6ed7b75cad0 | Steve Holme | |
2013-08-31 | ftpserver.pl: Added argument check to IMAP command handlers | Steve Holme | |
Added BAD argument check to the following IMAP command handlers: APPEND, STORE, LIST, EXAMINE, STATUS and SEARCH | |||
2013-08-31 | ftpserver.pl: More whitespace corrections | Steve Holme | |
LIST_imap() had a second level of indentation at 9 characters and not 8. | |||
2013-08-30 | ftpserver.pl: Small correction tidy up | Steve Holme | |
Corrected some IMAP variable names and whitespace issues. | |||
2013-08-30 | ftpserver: Bareword "to_mailbox" not allowed | Daniel Stenberg | |
Added missing $ | |||
2013-08-30 | ftpserver.pl: Added support for IMAP CREATE, DELETE and RENAME commands | Steve Holme | |
2013-08-29 | ftpserver.pl: Updated IMAP EXAMINE handler to use dynamic test data | Steve Holme | |
2013-08-29 | ftpserver.pl: Added SELECT check to IMAP FETCH and STORE handlers | Steve Holme | |
2013-08-28 | ftpserver.pl: Corrected accidental move of logmsg() call | Steve Holme | |
Corrected the call to logmsg() in the IMAP SEARCH handler from commit 4ae7b7ea691497 as it should have been outputting the what argument and not the test number. | |||
2013-08-28 | ftpserver: add missing '}' from 4ae7b7ea69149 | Daniel Stenberg | |
2013-08-28 | ftpserver.pl: Added SELECT check to IMAP SEARCH command | Steve Holme | |
2013-08-28 | ftpserver.pl: Fixed IMAP SEARCH command | Steve Holme | |
2013-08-27 | ftpserver.pl: Added support for IMAP SEARCH command | Steve Holme | |
2013-04-29 | ftpserver: silence warnings | Daniel Stenberg | |
Fix regressions in commit b56e3d43e5d. Make @data local and filter off non-numerical digits from $testno in STATUS_imap. | |||
2013-04-29 | ftpserver.pl: Corrected the imap LOGIN response | Steve Holme | |
...to be more realistic and consistent with the other imap responses. | |||
2013-04-29 | tests: Added imap STATUS command test | Steve Holme | |
2013-04-26 | ftpserver.pl: Fixed imap logout confirmation data | Steve Holme | |
An IMAP server should response with the BYE continuation response before confirming the LOGOUT command was successful. | |||
2013-04-12 | FTP: handle a 230 welcome response | Daniel Stenberg | |
...instead of the 220 we otherwise expect. Made the ftpserver.pl support sending a custom "welcome" and then created test 1219 to verify this fix with such a 230 welcome. Bug: http://curl.haxx.se/mail/lib-2013-02/0102.html Reported by: Anders Havn |