aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Expand)AuthorFilesLines
2013-06-11Moved POP3 client command related things to POP3Command class.Vincent Richard4-73/+274
2013-06-09Added function to return email address as a string.Vincent Richard1-0/+15
2013-06-09Charset conversion output stream for ICU.Vincent Richard1-6/+212
2013-06-07Include <winsock2.h> before <windows.h>, to avoid <winsock.h> inclusion.Vincent Richard1-1/+1
2013-05-14No need to read another response line in an empty 334 response.Vincent Richard1-5/+0
2013-05-13Do not increment tag after sending command (parser needs current tag).Vincent Richard1-4/+7
2013-05-13Cross-platform and (truly) thread-safe OpenSSL initialization.Vincent Richard4-46/+40
2013-05-12Lowered wait delay on Windows.Vincent Richard1-1/+1
2013-05-12Fixed missing includes.Vincent Richard2-0/+3
2013-05-12Fixed BIO_METHOD initialization for thread safety.Vincent Richard1-14/+16
2013-05-12Better random seed.Vincent Richard1-3/+13
2013-04-26Added unit tests for IMAPTag. Initialize sequence number at 1.Vincent Richard2-5/+13
2013-04-26Issue #36: added support for wildcard in Common Name when verifying host name...Vincent Richard1-1/+19
2013-04-26Fixed invalid buffer access.Vincent Richard1-1/+1
2013-04-26Fixed issue #37.Vincent Richard1-1/+1
2013-04-18Fixed double read of response.Vincent Richard1-2/+4
2013-04-16Added filtered output stream to transform LFs to CRLFs.Vincent Richard1-0/+71
2013-04-03Issue #4: set envelope sender.Vincent Richard3-7/+31
2013-03-27Remove +x bit from source filesJan Engelhardt8-0/+0
2013-03-25Added support for charset conversion with ICU (thanks to Mehmet Bozkurt).Vincent Richard3-2/+221
2013-03-24Strip spaces at end of header lines (Zarafa).Vincent Richard1-1/+15
2013-03-24Fixed warnings and 64-bit issues.Vincent Richard7-12/+12
2013-03-24Let whitespace break the value of a parameterized header field, not just a ';...Vincent Richard1-1/+7
2013-03-24Checks for a charset in all words of a parameter in a parameterizedHeader.Vincent Richard1-2/+15
2013-03-24Also check for RFC-2047 end sequence.Vincent Richard1-1/+1
2013-03-24Fixed parsing header field value on next line.Vincent Richard1-1/+1
2013-03-24Fixed whitespace parsing before word.Vincent Richard1-4/+6
2013-03-11Fixed mailbox and mailbox group parsing. Added unit tests.Vincent Richard4-9/+30
2013-03-06Fixed compilation warnings.Vincent Richard2-2/+2
2013-03-06Fixed maximum block size for read().Vincent Richard1-1/+1
2013-02-28Fixed issue #26: strcpy_s not available on MinGW.Vincent Richard1-0/+6
2013-02-27Throw exception when an invalid value type is set in a header field.Vincent Richard3-7/+31
2013-02-27Fixed wrong function called.Vincent Richard1-2/+2
2013-02-26Use secure versions of time/string functions on Windows.Vincent Richard2-9/+4
2013-02-25Fixed typo in function name.Vincent Richard5-9/+9
2013-02-25Defaults to local charset when assigning word from raw string.Vincent Richard1-0/+1
2013-02-24Message generation/parsing context. Charset conversion options. Preliminary i...Vincent Richard41-697/+1817
2013-02-24fix include file caseMark Brand2-2/+2
2013-02-23Fixed filename case.Vincent Richard1-1/+1
2013-02-22Fixed comparison always true.Vincent Richard1-2/+2
2013-02-207bit is the default encoding. Do not force CTE field with default value to be...Vincent Richard1-3/+0
2013-02-20Fixed SMTP dot stuffing at the beginning of content.Vincent Richard1-1/+24
2013-02-18Process header before transmitting message via SMTP.Vincent Richard3-8/+117
2013-02-17Added helper function to replace header field.Vincent Richard1-0/+7
2013-02-17SMTP response code 251 for RCPT TO is now treated as successful.Vincent Richard1-1/+2
2013-02-17Reset SMTP session state (using RSET command) if transport is being reused.Vincent Richard2-1/+28
2013-02-15The seekableInputStreamRegionAdapter now stores its own current position, to ...Vincent Richard1-13/+24
2013-02-13Trim first line of POP3 response to get rid of CR, if any.Vincent Richard1-2/+2
2013-02-12Unit tests for SMTPCommand and SMTPCommandSet. Fixed SMTPCommandSet::isFinish...Vincent Richard1-1/+1
2013-02-12Rewrote SMTP command sending. Better code for pipelining. Report full command...Vincent Richard3-109/+344