aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Let whitespace break the value of a parameterized header field, not just a ↵Vincent Richard2013-03-242-1/+19
| | | | | | | | ';' (thanks to Zarafa).
* | Checks for a charset in all words of a parameter in a parameterizedHeader.Vincent Richard2013-03-241-2/+15
| | | | | | | | | | | | Fixes filename encoding when the quoted-printable starts halfway, but if multiple charsets are used (unlikely) it may still fail (thanks to Zarafa).
* | Also check for RFC-2047 end sequence.Vincent Richard2013-03-241-1/+1
| |
* | Fixed parsing header field value on next line.Vincent Richard2013-03-243-9/+35
| |
* | Fixed whitespace parsing before word.Vincent Richard2013-03-241-4/+6
| |
* | Fixed library version.Vincent Richard2013-03-241-2/+2
| |
* | Fixed use of CMAKE_INSTALL_LIBDIR.Vincent Richard2013-03-201-19/+41
| |
* | Updated tests for charset conversion.Vincent Richard2013-03-1811-414/+388
| | | | | | | | | | | | Added test for UTF-7 encoding availability. Added test for input buffer underflow in charsetFilteredOutputStream. Refactored charset conversion tests and removed useless tests.
* | Fixed and clarified text about handleTimeout() return value.Vincent Richard2013-03-131-3/+5
| |
* | Rewrote text for better understanding.Vincent Richard2013-03-131-2/+3
| |
* | Travis-CI: install CppUnit for unit testing.Vincent Richard2013-03-111-1/+1
| |
* | Travis-CI: run CTest.Vincent Richard2013-03-111-1/+2
| |
* | Testing with CTest.Vincent Richard2013-03-112-6/+46
| |
* | Fixed mailbox and mailbox group parsing. Added unit tests.Vincent Richard2013-03-118-10/+149
| |
* | Refactored unit tests.Vincent Richard2013-03-0844-353/+316
| |
* | Fixed compilation warning.Vincent Richard2013-03-081-1/+1
| |
* | Merge pull request #33 from mabrand/fix-static-wsVincent Richard2013-03-071-0/+2
|\ \ | | | | | | link winsock for static builds
| * | link winsock for static buildsMark Brand2013-03-071-0/+2
|/ /
* | Fixed compilation warnings.Vincent Richard2013-03-063-3/+3
| |
* | Fixed maximum block size for read().Vincent Richard2013-03-061-1/+1
| |
* | Travis-CI: install dev package for GNU SASL.Vincent Richard2013-03-061-1/+1
| |
* | Travis-CI: install missing libraries + fixed path to sendmail.Vincent Richard2013-03-061-2/+3
| |
* | Added build file for Travis-CI.Vincent Richard2013-03-061-0/+24
| |
* | Fixes for out-of-source build.Vincent Richard2013-03-061-1/+2
|/
* Fixed 'config.hpp' not installed (issue #29).Vincent Richard2013-03-041-0/+2
|
* More fixes for pkg-config.Vincent Richard2013-03-012-5/+6
|
* Fixed dependencies and generation of .pc file (issue #28).Vincent Richard2013-03-012-8/+12
|
* Selective build of shared/static library (issue #27).Vincent Richard2013-03-011-73/+123
|
* Fixed issue #26: strcpy_s not available on MinGW.Vincent Richard2013-02-282-0/+7
|
* Throw exception when an invalid value type is set in a header field.Vincent Richard2013-02-278-14/+128
|
* 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 warnings about unused variables.Vincent Richard2013-02-261-7/+7
|
* Fixed typo in function name.Vincent Richard2013-02-2511-19/+19
|
* Defaults to local charset when assigning word from raw string.Vincent Richard2013-02-251-0/+1
|
* Unit tests for wordEncoder.Vincent Richard2013-02-252-0/+127
|
* Merge pull request #25 from mabrand/fix-caseVincent Richard2013-02-241-1/+1
|\ | | | | fix include file case
| * fix include file caseMark Brand2013-02-242-2/+2
| |
* | Message generation/parsing context. Charset conversion options. Preliminary ↵Vincent Richard2013-02-2491-959/+4374
| | | | | | | | implementation of RFC-6532.
* | 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 ↵Vincent Richard2013-02-201-3/+0
|/ | | | be added in header.
* Fixed SMTP dot stuffing at the beginning of content.Vincent Richard2013-02-203-2/+32
|
* Process header before transmitting message via SMTP.Vincent Richard2013-02-185-8/+151
|
* Added helper function to replace header field.Vincent Richard2013-02-173-0/+34
|
* 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-175-1/+40
|
* Always throw std exceptions (eg. bad_alloc) and VMime time out exceptions.Vincent Richard2013-02-161-3/+18
|
* Unit tests for seekableInputStreamRegionAdapter.Vincent Richard2013-02-152-0/+163
|
* The seekableInputStreamRegionAdapter now stores its own current position, to ↵Vincent Richard2013-02-152-13/+25
| | | | avoid issues when multiple adapters share the same underlying stream.