Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-11 | test: fix newline for the data check of 807 | Daniel Stenberg | |
2013-03-11 | test801 to test807: fix protocol section line endings | Yang Tse | |
2013-03-10 | Makefile.am: Corrected a couple of spurious tab characters | Steve Holme | |
Corrected a couple of tab characters between test702 and test703, and between test900 and test901 which should be spaces. | |||
2013-03-10 | imap: Added test807 for custom request functionality (STORE) | Jiri Hruska | |
2013-03-10 | imap: Added test806 for IMAP (folder) LIST command | Jiri Hruska | |
2013-03-10 | imap: Added test805 for APPEND functionality | Jiri Hruska | |
2013-03-10 | imap: Added test804 for skipping SELECT if in the same mailbox | Jiri Hruska | |
2013-03-10 | imap: Added test802 and test803 for UIDVALIDITY verification | Jiri Hruska | |
Added one test for a request with matching UIDVALIDITY and one which is a mismatched request that will fail. | |||
2013-03-10 | imap: Added test801 for UID and SECTION URL parameters | Jiri Hruska | |
2013-03-10 | imap-tests: Accept quoted parameters in ftpserver.pl | Jiri Hruska | |
Any IMAP parameter can come in escaped and in double quotes. Added a simple function to unquote the command parameters and applied it to the IMAP command handlers. | |||
2013-03-10 | tests: Fix ftpserver.pl indentation | Jiri Hruska | |
The whole of FETCH_imap() had one extra space of indentation, whilst APPEND_imap() used indentation of 2 instead of 4 in places. | |||
2013-03-10 | Makefile.am: Corrected end of line filler character | Steve Holme | |
The majority of lines, that specify a test file for inclusion, end with a tab character before the slash whilst some end with a space. Corrected those that end with a space to end with a tab character as well. | |||
2013-03-10 | email-tests: Updated the test data that corresponds to the test number | Steve Holme | |
Finished segregating the email protocol tests, into their own protocol based ranges, in preparation of adding more e-mail related tests to the test suite. | |||
2013-03-10 | email-tests: Renamed the IMAP test to be 800 | Steve Holme | |
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. | |||
2013-03-10 | email-tests: Renamed the SMTP tests to be in the range 900-906 | Steve Holme | |
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. | |||
2013-03-10 | email-tests: Renamed the POP3 tests to be in the range 850-857 | Steve Holme | |
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. | |||
2013-03-10 | hiperfifo: updated to use current libevent API | Daniel Stenberg | |
Patch by: Myk Taylor | |||
2013-03-10 | imap: Reworked some function descriptions | Steve Holme | |
2013-03-10 | imap: Added some missing comments to imap_sendf() | Steve Holme | |
2013-03-09 | email: Removed hard returns from init functions | Steve Holme | |
2013-03-09 | curl_multi_wait: avoid second loop if nothing to do | Daniel Stenberg | |
... hopefully this will also make clang-analyzer stop warning on potentional NULL dereferences (which were false positives anyway). | |||
2013-03-09 | multi_runsingle: avoid NULL dereference | Daniel Stenberg | |
When Curl_do() returns failure, the connection pointer could be NULL so the code path following needs to that that into account. Bug: http://curl.haxx.se/mail/lib-2013-03/0062.html Reported by: Eric Hu | |||
2013-03-09 | imap: Re-factored all perform based functions | Steve Holme | |
Standardised the naming of all perform based functions to be in the form imap_perform_something(). | |||
2013-03-09 | examples/getinmemory.c: abort the transfer if not enough memory | Cédric Deltheil | |
No more use exit(3) but instead tell libcurl that no byte has been written to let it return a `CURLE_WRITE_ERROR`. In addition, check curl easy handle return code. | |||
2013-03-09 | RELEASE-NOTES: synced with ca3c0ed3a9c | Daniel Stenberg | |
8 more bugfixes, one change and a bunch of contributors | |||
2013-03-09 | Makefile.am: empty AM_LDFLAGS definition for automake 1.7 compatibility | Yang Tse | |
2013-03-09 | imap: Added description comments to all perform based functions | Steve Holme | |
2013-03-09 | imap: Removed the need for separate custom request functions | Steve Holme | |
Moved the custom request processing into the LIST command as the logic is the same. | |||
2013-03-09 | imap: Corrected typo in comment | Steve Holme | |
2013-03-09 | Makefile.am: empty AM_LDFLAGS definition for automake 1.7 compatibility | Yang Tse | |
2013-03-09 | imap: Moved imap_logout() to be grouped with the other perform functions | Steve Holme | |
2013-03-09 | email: Updated the function descriptions for the logout / quit functions | Steve Holme | |
Updated the function description comments following commit 4838d196fdbf. | |||
2013-03-09 | email: Simplified the logout / quit functions | Steve Holme | |
Moved the blocking state machine to the disconnect functions so that the logout / quit functions are only responsible for sending the actual command needed to logout or quit. Additionally removed the hard return on failure. | |||
2013-03-08 | email: Tidied up the *_regular_transfer() functions | Steve Holme | |
Added comments and simplified convoluted dophase_done comparison. | |||
2013-03-08 | email: Simplified nesting of if statements in *_doing() functions | Steve Holme | |
2013-03-08 | RELEASE-NOTES: mention that krb4 is up for consideration | Daniel Stenberg | |
2013-03-08 | imap: Fixed handling of untagged responses for the STORE custom command | Steve Holme | |
Added an exception, for the STORE command, to the untagged response processor in imap_endofresp() as servers will back respones containing the FETCH keyword instead. | |||
2013-03-08 | curlbuild.h.dist: enhance non-configure GCC ABI detection logic | Yang Tse | |
GCC specific adjustments: - check __ILP32__ before 32 and 64bit processor architectures in order to detect ILP32 programming model on 64 bit processors which, of course, also support LP64 programming model, when using gcc 4.7 or newer. - keep 32bit processor architecture checks in order to support gcc versions older than 4.7 which don't define __ILP32__ - check __LP64__ for gcc 3.3 and newer, while keeping 64bit processor architecture checks for older versions which don't define __LP64__ | |||
2013-03-08 | curlbuild.h.dist: fix GCC build on ARM systems without configure script | Yang Tse | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1205 Reported by: technion | |||
2013-03-08 | polarssl.c: fix header filename typo | Gisle Vanem | |
2013-03-08 | configure: use XC_LIBTOOL for portability across libtool versions | Yang Tse | |
2013-03-08 | xc-lt-iface.m4: provide XC_LIBTOOL macro | Yang Tse | |
2013-03-07 | imap: Fixed SELECT not being performed for custom requests | Steve Holme | |
2013-03-07 | email: Minor code tidy up following recent changes | Steve Holme | |
Removed unwanted braces and added variable initialisation. | |||
2013-03-07 | DOCS: Corrected the IMAP URL grammar of the UIDVALIDITY parameter | Steve Holme | |
2013-03-07 | FEATURES: Provided a little clarity in some IMAP features | Steve Holme | |
2013-03-07 | email: Optimised block_statemach() functions | Steve Holme | |
Optimised the result test in each of the block_statemach() functions. | |||
2013-03-07 | DOCS: Added the list command to the IMAP URL section | Steve Holme | |
Added examples of the list command and clarified existing example URLs following recent changes. | |||
2013-03-07 | FEATURES: Updated for recent imap additions | Steve Holme | |
Updated the imap features list, corrected a typo in the smtp features and clarified a pop3 feature. | |||
2013-03-07 | version bump: the next release will be 7.30.0 | Daniel Stenberg | |