Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2013-09-19 | tests: Added SMTP large message SIZE test | Steve Holme | |
2013-09-19 | ftpserver.pl: Updated email regex from commit 98f7ca7e971006 | Steve Holme | |
...to not be as strict as it was rejecting valid numeric email addresses. | |||
2013-09-19 | tests: Fixed smtp mail from addresses | Steve Holme | |
2013-09-18 | ftpserver.pl: Standardised CAPA and AUTH responses | Steve Holme | |
2013-09-18 | ftpserver.pl: Corrected POP3 QUIT reply to be more realistic | Steve Holme | |
2013-09-18 | runtests.pl: Fixed syntax error in commit c873375123343e | Steve Holme | |
Possible unintended interpolation in string at line 796 | |||
2013-09-18 | runtests.pl: Fixed smtp mail from address | Steve Holme | |
Following changes to ftpserver.pl fixed the mail from address to be a correctly formatted address otherwise the server response will be 501 Invalid address. | |||
2013-09-18 | ftpserver.pl: Fixed syntax error in commit 98f7ca7e971006 | Steve Holme | |
Can't modify constant item in scalar assignment line 779, near "0;" | |||
2013-09-18 | ftpserver.pl: Expanded the SMTP MAIL handler to validate messages | Steve Holme | |
MAIl_smtp() will now check for a correctly formatted FROM address as well as the optional SIZE parameter comparing it against the server capability when specified. | |||
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-17 | ftpserver.pl: Corrected response code for successful MAIL command | Steve Holme | |
2013-09-17 | ftpserver.pl: Moved SMTP MAIL handler into own function | Steve Holme | |
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 the ability to include spaces in capabilities | Steve Holme | |
For example: CAPA "SIZE 1048576" 8BITMIME BINARYMIME will populate the capabilities list with the following in: SIZE 1048576 8BITMIME BINARYMIME | |||
2013-09-15 | ftpserver.pl: Corrected response code for successful SMTP QUIT command | Steve Holme | |
2013-09-15 | ftpserver.pl: Fixed syntax error in commit 33c1f2876b9029 | Steve Holme | |
Can't modify constant item in postincrement line 727, near "i++" | |||
2013-09-15 | ftpserver.pl: Added CAPA & AUTH directive support to the SMTP EHLO handler | Steve Holme | |
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 | tests: Updated descriptions to be more meaningful | Steve Holme | |
2013-09-14 | ftpserver.pl: Added support for IMAP NOOP command | Steve Holme | |
2013-09-14 | tests: Updated descriptions to be more meaningful | 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. |