Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-06-06 | Removed useless 'virtual' inheritance (fixed issue #84). | Vincent Richard | 3 | -3/+3 | |
2014-06-01 | Fixed parsing of empty lines in header field value. | Vincent Richard | 2 | -67/+49 | |
2014-05-27 | Fixed auto_ptr<> not to be used with new[]. | Vincent Richard | 1 | -20/+12 | |
2014-05-27 | Fixed ICU status code checking. | Vincent Richard | 1 | -8/+8 | |
2014-05-27 | Fixed ICU status code checking. | --global | 1 | -8/+8 | |
2014-04-18 | add charset ‘GBK’ | di3online | 1 | -0/+1 | |
GB18030 contains GBK, GBK contains gb2312. | |||||
2014-04-15 | recursively create all parent directories if they do not exist on Windows | xh | 1 | -1/+1 | |
2014-04-04 | Do not check for SSL handle validity in handshake() as it is initialized a ↵ | Vincent Richard | 1 | -3/+0 | |
few lines later. | |||||
2014-04-01 | Added missing VMIME_HAVE_TLS_SUPPORT guards (pull request #74). | Vincent Richard | 2 | -5/+31 | |
2014-04-01 | Nested classes need to explicitly import and export | Di3 | 3 | -3/+3 | |
2014-03-26 | windows build fix: add missing member declaration | Mark Brand | 1 | -0/+1 | |
2014-03-25 | Trace socket/connection events. | Vincent Richard | 15 | -5/+133 | |
2014-03-20 | Fixed issue #71. | Vincent Richard | 1 | -1/+1 | |
2014-03-17 | Unit tests for IMAP utils. | Vincent Richard | 1 | -1/+1 | |
2014-03-16 | Connection trace facility. | Vincent Richard | 27 | -49/+463 | |
2014-03-16 | Modified IMAP parser constructor to make testing easier. | Vincent Richard | 2 | -4/+36 | |
2014-03-15 | IMAP commands. | Vincent Richard | 10 | -265/+704 | |
2014-03-13 | Removed unused/unimplemented function. | Vincent Richard | 3 | -23/+0 | |
2014-03-10 | Premature return if message list/set is empty. | Vincent Richard | 3 | -0/+18 | |
2014-03-10 | Issue #47: get and fetch messages. | Vincent Richard | 7 | -0/+126 | |
Added a feature to get and fetch a list of messages at the same time, to avoid a roundtrip to the server. | |||||
2014-03-10 | Fixed operator to combine flags. | Vincent Richard | 1 | -1/+1 | |
2014-03-09 | Default timeout handler. Fixed spelling. | Vincent Richard | 5 | -6/+172 | |
2014-03-08 | Fixed memory leak. | Vincent Richard | 1 | -0/+10 | |
2014-03-07 | Retry reading from the stream instead of waiting for input data on socket. | Vincent Richard | 1 | -1/+11 | |
2014-02-26 | Compilation fixes for Windows. | Vincent Richard | 1 | -2/+2 | |
2014-02-26 | Fixed possible issues with EAGAIN on Windows. | Vincent Richard | 2 | -12/+16 | |
2014-02-24 | Non exception-driven IMAP parser. | Vincent Richard | 1 | -1039/+1028 | |
2014-02-23 | Make serviceFactory::create throw instead of dying for invalid protocols. | Vincent Richard | 1 | -1/+6 | |
2014-02-13 | Added support for initial response in SASL authentication. | Vincent Richard | 11 | -3/+110 | |
2014-02-13 | Fixed problem when custom registered mechanism is used. | Vincent Richard | 2 | -13/+23 | |
User-defined mechanisms should be tested first. Added function to determine whether a mechanism is built-in. | |||||
2014-02-08 | Fixed extraction of message parts in IMAP. | Vincent Richard | 1 | -3/+0 | |
2014-02-06 | Windows charset converter (thanks to ElmüSoft). | Vincent Richard | 3 | -0/+448 | |
2014-02-05 | Better polling. Fixed possible connection issues on POSIX with slow network. ↵ | Vincent Richard | 19 | -210/+358 | |
Better error handling in POSIX sockets. | |||||
2014-02-05 | Fixed null value in Windows build. | laurent-richard | 3 | -3/+3 | |
2014-01-31 | Fixed type. | Vincent Richard | 1 | -2/+1 | |
2014-01-24 | Change path::toString to be a const function | tholdawa | 2 | -2/+2 | |
2014-01-22 | IMAPMessage::processFetchResponse was attempting to set Cc and Bcc header ↵ | tholdawa | 1 | -2/+2 | |
fields to values of type mailboxList. HeaderFieldFactory registers these fields as type adddressList, so a bad_field_value_type exception was thrown when processing a fetch response for a message with either Cc or Bcc fields. Fixed by calling toAddressList on the mailboxList header field values to convert them to expected type. | |||||
2014-01-19 | Use appropriate syntax for rethrowing exceptions. | Vincent Richard | 3 | -10/+10 | |
2014-01-19 | SASL is the only authentication method supported in SMTP (no fallback). | Vincent Richard | 1 | -14/+1 | |
2014-01-19 | Calling getAttributes() does not require the folder to be open. | Vincent Richard | 2 | -6/+0 | |
2014-01-19 | Do not flag existing messages as recent. | Vincent Richard | 1 | -1/+1 | |
2014-01-19 | Path to/from string conversion. | Vincent Richard | 2 | -0/+66 | |
2014-01-19 | Better error message. | Vincent Richard | 1 | -1/+1 | |
2014-01-19 | Fixed possible crash when COPYUID/APPENDUID is not supported by the server. | Vincent Richard | 1 | -2/+2 | |
2014-01-19 | Fixed argument to handshake(). | Vincent Richard | 1 | -1/+1 | |
2014-01-19 | In SSL socket, use timeout handler of underlying socket. Throw exception ↵ | Vincent Richard | 16 | -54/+144 | |
when reading from/writing to disconnected SSL socket. | |||||
2014-01-19 | Fixed SMTP disconnection error caused by handshake failure. | Vincent Richard | 1 | -8/+11 | |
2014-01-16 | C++11 std::shared_ptr fixes. | Vincent Richard | 2 | -8/+8 | |
2014-01-16 | Fixes for socket using 'byte_t' type. | Vincent Richard | 2 | -12/+14 | |
2014-01-15 | Do not make calls to setlocale() in a library. Use default user locale in ↵ | Vincent Richard | 1 | -5/+1 | |
tests and examples. |