- Mar 07, 2013
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
The list of unsafe functions currently consists of sprintf, vsprintf, strcat, strncat and gets. Subsequently, some existing code needed updating to avoid warnings on this.
-
Steve Holme authored
With all the recent imap changes it wasn't clear what new features and fixes should be included in the release notes.
-
Nick Zitzmann authored
-
- Mar 06, 2013
-
-
Jiri Hruska authored
Just a folder list would be retrieved if UID was not specified now.
-
Jiri Hruska authored
Commit 198012ee inadvertently broke LIST_imap().
-
Steve Holme authored
Removed unnecessary state changes on failure and setting of result codes on success.
-
Steve Holme authored
Removed unnecessary state change on failure and setting of result code on success.
-
Steve Holme authored
Reworked comments as they referenced custom commands, removed unnecessary state change on failure and setting of result code on success.
-
Steve Holme authored
Removed imap_state_custom_resp() as imap_state_list_resp() provides the same functionality.
-
Jiri Hruska authored
Enriched IMAP capabilities of ftpserver.pl in order to be able to add tests for the new IMAP features. * Added support for APPEND - Saves uploaded data to log/upload.$testno * Added support for LIST - Returns the contents of <reply/> section in the current test, like e.g FETCH. * Added support for STORE - Returns hardcoded updated flags * Changed handling of SELECT - Returns much more information in the usual set of untagged responses; uses hardcoded data from an example in the IMAP RFC * Changed handling of FETCH - Fixed response format
-
Steve Holme authored
As the UID has to be specified by the user for the FETCH command to work correctly, added a check to imap_fetch(), although strictly speaking it is protected by the call from imap_perform().
-
Kamil Dudka authored
The option needs to be set on the SSL socket. Setting it on the model takes no effect. Note that the non-blocking mode is still not enabled for the handshake because the code is not yet ready for that.
-
Daniel Stenberg authored
imap.c:694:21: error: unused variable 'imapc' [-Werror=unused-variable]
-
- Mar 05, 2013
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
Updated the style of imap_select() before adding the LIST command.
-
Steve Holme authored
In preparation for the addition of the LIST command, moved the mailbox check from imap_do() to imap_select() and imap_append().
-
Steve Holme authored
Commit 26eaa838 introduces the use of S_ISDIR() yet some compilers, such as MSVC don't support it, so we must define a substitute using file flags and mask.
-
- Mar 04, 2013
-
-
Daniel Stenberg authored
Commit f4cc54cb (shipped as part of the 7.29.0 release) was a bug fix that introduced a regression in that while trying to avoid allowing directory names, it also forbade "special" files like character devices and more. like "/dev/null" as was used by Oliver who reported this regression. Reported by: Oliver Gondža Bug: http://curl.haxx.se/mail/archive-2013-02/0040.html
-
Nick Zitzmann authored
If the server hung up the connection without sending a closure alert, then we'd keep probing the socket for data even though it's dead. Now we're ready for this situation. Bug: http://curl.haxx.se/mail/lib-2013-03/0014.html Reported by: Aki Koskinen
-
- Mar 03, 2013
-
-
Steve Holme authored
-
Jiri Hruska authored
-
Steve Holme authored
-
Steve Holme authored
Some state changes would be performed after a failure test that performed a hard return, whilst others would be performed within a test for success. Updated the code, for consistency, so all instances are performed within a success test.
-
Steve Holme authored
Some state changes would be performed after a failure test that performed a hard return, whilst others would be performed within a test for success. Updated the code, for consistency, so all instances are performed within a success test.
-
Steve Holme authored
-
Jiri Hruska authored
Fixed imap_done() so that neither the FINAL states are not entered when a custom command has been performed.
-
Jiri Hruska authored
Changed imap_select_resp() to invoke imap_custom() instead of imap_fetch() after the mailbox has been selected if a custom command has been set.
-
Jiri Hruska authored
Modified imap_perform() to start with the custom command instead of SELECT when a custom command is to be performed and no mailbox has been given.
-
Jiri Hruska authored
Added imap_custom(), which initiates the custom command processing, and an associated response handler imap_state_custom_resp(), which handles any responses by sending them to the client as body data. All untagged responses with the same name as the first word of the custom request string are accepted, with the exception of SELECT and EXAMINE which have responses that cannot be easily identified. An extra check has been provided for them so that any untagged responses are accepted for them.
-
Steve Holme authored
Updated pop3 code following recent imap changes.
-
Jiri Hruska authored
Added imap_parse_custom_request() for parsing the CURLOPT_CUSTOMREQUEST parameter which URL decodes the value and separates the request from any parameters - This makes it easier to filter untagged responses by the request command.
-
Jiri Hruska authored
Added custom request parameters to the per-request structure.
-
Jiri Hruska authored
-
- Mar 02, 2013
-
-
Steve Holme authored
Minor tidy up of code layout and comments following recent changes.
-
Steve Holme authored
Introduced the result code variable to simplify the state changes and remove the hard returns.
-
Steve Holme authored
For consistency changed the logic of the imap_state_append_resp() function to test for an unsucessful continuation response rather than a succesful one.
-
Steve Holme authored
For consistency changed two if(constant != imapcode) tests to be if(imapcode != constant).
-