aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Moved POP3 connection-related things to POP3Connection object.Vincent Richard2013-06-126-550/+709
* Moved POP3 client command related things to POP3Command class.Vincent Richard2013-06-114-73/+274
* Added function to return email address as a string.Vincent Richard2013-06-091-0/+15
* Charset conversion output stream for ICU.Vincent Richard2013-06-091-6/+212
* Include <winsock2.h> before <windows.h>, to avoid <winsock.h> inclusion.Vincent Richard2013-06-071-1/+1
* No need to read another response line in an empty 334 response.Vincent Richard2013-05-141-5/+0
* Do not increment tag after sending command (parser needs current tag).Vincent Richard2013-05-131-4/+7
* Cross-platform and (truly) thread-safe OpenSSL initialization.Vincent Richard2013-05-134-46/+40
* Lowered wait delay on Windows.Vincent Richard2013-05-121-1/+1
* Fixed missing includes.Vincent Richard2013-05-122-0/+3
* Fixed BIO_METHOD initialization for thread safety.Vincent Richard2013-05-121-14/+16
* Better random seed.Vincent Richard2013-05-121-3/+13
* Added unit tests for IMAPTag. Initialize sequence number at 1.Vincent Richard2013-04-262-5/+13
* Issue #36: added support for wildcard in Common Name when verifying host name...Vincent Richard2013-04-261-1/+19
* Fixed invalid buffer access.Vincent Richard2013-04-261-1/+1
* Fixed issue #37.Vincent Richard2013-04-261-1/+1
* Fixed double read of response.Vincent Richard2013-04-181-2/+4
* Added filtered output stream to transform LFs to CRLFs.Vincent Richard2013-04-161-0/+71
* Issue #4: set envelope sender.Vincent Richard2013-04-033-7/+31
* Remove +x bit from source filesJan Engelhardt2013-03-278-0/+0
* Added support for charset conversion with ICU (thanks to Mehmet Bozkurt).Vincent Richard2013-03-253-2/+221
* Strip spaces at end of header lines (Zarafa).Vincent Richard2013-03-241-1/+15
* Fixed warnings and 64-bit issues.Vincent Richard2013-03-247-12/+12
* Let whitespace break the value of a parameterized header field, not just a ';...Vincent Richard2013-03-241-1/+7
* Checks for a charset in all words of a parameter in a parameterizedHeader.Vincent Richard2013-03-241-2/+15
* Also check for RFC-2047 end sequence.Vincent Richard2013-03-241-1/+1
* Fixed parsing header field value on next line.Vincent Richard2013-03-241-1/+1
* Fixed whitespace parsing before word.Vincent Richard2013-03-241-4/+6
* Fixed mailbox and mailbox group parsing. Added unit tests.Vincent Richard2013-03-114-9/+30
* Fixed compilation warnings.Vincent Richard2013-03-062-2/+2
* Fixed maximum block size for read().Vincent Richard2013-03-061-1/+1
* Fixed issue #26: strcpy_s not available on MinGW.Vincent Richard2013-02-281-0/+6
* Throw exception when an invalid value type is set in a header field.Vincent Richard2013-02-273-7/+31
* Fixed wrong function called.Vincent Richard2013-02-271-2/+2
* Use secure versions of time/string functions on Windows.Vincent Richard2013-02-262-9/+4
* Fixed typo in function name.Vincent Richard2013-02-255-9/+9
* Defaults to local charset when assigning word from raw string.Vincent Richard2013-02-251-0/+1
* Merge pull request #25 from mabrand/fix-caseVincent Richard2013-02-241-1/+1
|\
| * fix include file caseMark Brand2013-02-242-2/+2
* | Message generation/parsing context. Charset conversion options. Preliminary i...Vincent Richard2013-02-2441-697/+1817
* | Fixed filename case.Vincent Richard2013-02-231-1/+1
* | Fixed comparison always true.Vincent Richard2013-02-221-2/+2
* | 7bit is the default encoding. Do not force CTE field with default value to be...Vincent Richard2013-02-201-3/+0
|/
* Fixed SMTP dot stuffing at the beginning of content.Vincent Richard2013-02-201-1/+24
* Process header before transmitting message via SMTP.Vincent Richard2013-02-183-8/+117
* Added helper function to replace header field.Vincent Richard2013-02-171-0/+7
* SMTP response code 251 for RCPT TO is now treated as successful.Vincent Richard2013-02-171-1/+2
* Reset SMTP session state (using RSET command) if transport is being reused.Vincent Richard2013-02-172-1/+28
* The seekableInputStreamRegionAdapter now stores its own current position, to ...Vincent Richard2013-02-151-13/+24
* Trim first line of POP3 response to get rid of CR, if any.Vincent Richard2013-02-131-2/+2