aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* #217 Fixed memory leakVincent Richard2019-07-021-2/+3
|
* Merge branch 'master' of https://github.com/kisli/vmimeVincent Richard2019-04-182-187/+172
|\
| * Unbreak own hostname qualification on POSIX systemsJan Engelhardt2019-02-061-7/+5
| | | | | | | | | | | | Partial revert commit v0.9.2-6-g9a3d6880 (issue #160), because invoking getaddrinfo(NULL, ... AI_CANONNAME) is illegal and never succeeds.
| * Improve address parser for malformed mailbox specificationsJan Engelhardt2019-01-251-180/+167
| | | | | | | | | | | | | | | | | | | | | | | | Spammers use "Name <addr> <addr>" to trick some parsers. My expectations as to what the outcome should be is presented in the updated mailboxTest.cpp. The DFA in mailbox::parseImpl is hereby redone so as to pick the rightmost address-looking portion as the address, rather than something in between. While doing so, it will also no longer mangle the name part anymore (it does this by keeping a "as_if_name" variable around until the end).
* | #213 Add support for invalid empty () in FETCH body structure (non-strict)Vincent Richard2019-04-181-3/+16
|/
* #206 Initialize and delete pointersVincent Richard2018-10-171-1/+9
|
* Removed 'stringProxy' since COW std::string is no longer valid in C++11.Vincent Richard2018-09-159-518/+26
|
* Merge branch 'master' into masterVincent Richard2018-09-07446-18950/+22375
|\
| * Useless mutex does not make nl_langinfo() thread-safe.Vincent Richard2018-09-061-44/+9
| |
| * Fixed bug in implementation of isStringEqualNoCase().Vincent Richard2018-09-061-1/+1
| |
| * Moved implementation.Vincent Richard2018-09-062-8/+59
| |
| * Fixed possible memory leak.Vincent Richard2018-09-061-0/+5
| |
| * Code style and clarity.Vincent Richard2018-09-05445-18698/+21928
| |
| * Merge pull request #198 from xguerin/masterVincent Richard2018-09-053-1/+101
| |\ | | | | | | Import multiple certificates withing a single stream
| | * Import multiple certificates withing a single streamXavier Guérin2018-05-313-0/+100
| | |
| | * Fix X509Certificate::getIssuerString signatureXavier Guérin2018-05-311-1/+1
| | |
| * | Merge pull request #201 from 0xd34df00d/masterVincent Richard2018-08-314-0/+27
| |\ \ | | | | | | | | Added net::message::getName() + the IMAP implementation
| | * | Added net::message::getName() + the IMAP implementation.0xd34df00d2018-07-044-0/+27
| | |/
| * | Removed useless 'constCast's.Vincent Richard2018-08-186-30/+16
| | |
| * | Avoid copy by passing shared_ptr<> with const reference.Vincent Richard2018-08-18208-606/+608
| | |
| * | Fixed delete array.Vincent Richard2018-08-181-1/+1
| | |
| * | Fixed compilation errors with OpenSSL 1.1.0.Vincent Richard2018-08-171-14/+63
| | |
| * | Force classic locale when formatting IMAP UIDs.Vincent Richard2018-08-171-0/+1
| | |
| * | Fixed warnings with GCC 7.Vincent Richard2018-08-174-9/+14
| |/
| * #193 Dropped support for boot::shared_ptr<>, enabled C++11 support in CMakeVincent Richard2018-04-011-42/+8
| |
| * Handle parsing of [email protected] <[email protected]>Bo Simonsen2018-02-191-6/+0
| | | | | | | | | | | | | | The behavior of current VMIME implementation will result in address [email protected] with an empty name. That is because the parsing is stopped whenever a wihtespace and a at-character is seen. We should continue the parsing to deduce the real address ([email protected] in the example).
| * Merge pull request #184 from josusky/smtp-authVincent Richard2017-12-201-1/+37
| |\ | | | | | | Add SMTPS with AUTH PLAIN without SASL.
| | * Add SMTPS with AUTH PLAIN without SASLJan Osusky2017-11-031-1/+37
| | | | | | | | | | | | | | | GNU SASL is a nice library but comes with its own prerequisites and dependencies. As IMAP and POP3 are able to work without SASL it seems to me logical to add some authentication support to SMTP too. As these days most of the communication is encrypted it is common to use simple mechanism like AUTH PLAIN, so I have added it.
| * | Issue #186: SMTPUTF8 is not an argument to RCPT + UTF8 in recipient address ↵Vincent Richard2017-12-142-7/+18
| | | | | | | | | | | | must switch the whole message to SMTPUTF8.
| * | Fixed #186: use SMTPUTF8 only when needed.Vincent Richard2017-12-143-3/+36
| |/
* | Add SMTPS with AUTH PLAIN without SASLJan Osusky2017-10-201-1/+37
| | | | | | | | | | GNU SASL is a nice library but comes with its own prerequisites and dependencies. As IMAP and POP3 are able to work without SASL it seems to me logical to add some authentication support to SMTP too. As these days most of the communication is encrypted it is common to use simple mechanism like AUTH PLAIN, so I have added it.
* | Fix of compilation warning reported by GCC 4.9.3Jan Osusky2017-10-202-1/+6
|/ | | | 'class vmime::net::messageSetEnumerator' has virtual functions and accessible non-virtual destructor
* Remove unnecesary public in vmime::encondingMiguel Chacon2017-10-171-2/+0
|
* Issue #179: fixed input/output buffer size.Vincent Richard2017-09-061-2/+7
|
* Fixed send performance issueAulddays2017-08-181-1/+1
|
* Fixed #177: thread id on OpenBSD.Vincent Richard2017-08-091-0/+2
|
* Clear OpenSSL error queue before calling a SSL_*() function, then ↵Vincent Richard2017-07-142-0/+11
| | | | SSL_get_error().
* Fixed #176: fixed missing definition of AF_UNSPEC and SOCK_STREAM on OpenBSD ↵Vincent Richard2017-07-141-0/+1
| | | | systems.
* Issue #173: recognize non-standard '8bits' encoding.Vincent Richard2017-06-191-0/+1
|
* Issue #138: fixed non-portable HOST_NAME_MAX.Vincent Richard2017-05-081-1/+1
|
* Issue #138: more reliable detection of strerror_r() variant.Vincent Richard2017-05-081-14/+27
|
* Merge branch 'master' of https://github.com/kisli/vmimeVincent Richard2017-03-294-14/+60
|\
| * Merge pull request #165 from bmagistro/masterVincent Richard2017-03-134-14/+60
| |\ | | | | | | Ensure user defined parsingContext is passed forward on calls to parse.
| | * fix deleted characterbmagistro2017-03-091-1/+1
| | |
| | * attempt 2, fix whitespace differencesbmagistro2017-03-092-22/+22
| | |
| | * attempt 2, fix whitespace differencesbmagistro2017-03-091-17/+17
| | |
| | * use original headerField.cpp to avoid whitespace differencesbmagistro2017-02-271-89/+89
| | |
| | * add option to control parser invalid line behaviorbmagistro2017-02-273-90/+136
| | |
| | * ensure user defined parsingContext is passed forward on calls to parsebmagistro2017-02-251-5/+5
| | |
* | | Issue #168: multiple sequences of 'LF..' not replaced correctly.Vincent Richard2017-03-281-20/+12
|/ /