aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/smtp/SMTPTransport.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Boost/C++11 shared pointers.Vincent Richard2013-11-211-13/+13
|
* SMTP-specific exceptions.Vincent Richard2013-09-081-14/+40
|
* Added SMTP service properties to allow disabling PIPELINING and CHUNKING ↵Vincent Richard2013-07-241-2/+7
| | | | extensions.
* Added support for SIZE SMTP extension (RFC-1870).Vincent Richard2013-06-241-9/+48
|
* Return after sending message when sending is supported.Vincent Richard2013-06-221-0/+1
|
* Added support for CHUNKING SMTP extension (RFC-3030). More robust unit tests ↵Vincent Richard2013-06-201-19/+53
| | | | for SMTP.
* Moved SMTP connection-related things to SMTPConnection object.Vincent Richard2013-06-191-478/+48
|
* SMTPUTF8: generate Internationalized Email only if supported by SMTP server.Vincent Richard2013-06-181-0/+28
|
* Added support for SMTPUTF8 extension (RFC-6531).Vincent Richard2013-06-121-3/+6
|
* Fixed double read of response.Vincent Richard2013-04-181-2/+4
|
* Issue #4: set envelope sender.Vincent Richard2013-04-031-4/+8
|
* 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-171-1/+21
|
* Rewrote SMTP command sending. Better code for pipelining. Report full ↵Vincent Richard2013-02-121-109/+45
| | | | command text on MAIL/RCPT errors.
* Updated copyright year and maintainer email address.Vincent Richard2013-01-101-1/+1
|
* Trivial 64-bit warning fixes.Vincent Richard2012-12-121-4/+4
|
* Trivial 64-bit warning fixes.Vincent Richard2012-11-291-2/+2
|
* SMTP Command Pipelining (RFC-2920).Vincent Richard2012-11-111-24/+109
|
* OpenSSL support (thanks to Mehmet Bozkurt).Vincent Richard2012-11-031-2/+2
|
* Migrated build system to CMake. Conditional file compilation. Automatic ↵Vincent Richard2012-11-011-0/+10
| | | | selection of platform handler.
* Split stream.hpp/.cpp into multiple source files.Vincent Richard2012-04-141-0/+2
|
* No extra space between ':' and '<' in MAIL FROM and RCPT TO. Wait for server ↵Vincent Richard2010-12-081-2/+3
| | | | response after QUIT and before closing connection.
* Return failed email address in exception for RCPT TO.Vincent Richard2010-10-201-1/+1
|
* Connection time out.Vincent Richard2010-08-051-1/+1
|
* Relicensed VMime under the GNU GPL version 3. Changed copyright year to 2009.Vincent Richard2009-09-061-2/+2
|
* Send CRLF in the same packet as command to avoid problems with some servers.Vincent Richard2008-12-161-2/+4
|
* New namespace for encoders.Vincent Richard2008-10-121-1/+0
|
* Fixed compilation warnings.Vincent Richard2008-10-121-2/+2
|
* Changed copyright year to 2008.Vincent Richard2008-01-041-1/+1
|
* Allow more than one mechanism after AUTH=.Vincent Richard2007-04-241-12/+11
|
* Better parsing of ESMTP extensions.Vincent Richard2007-03-281-38/+36
|
* Fixed typo in the copyright header, and added missing paragraph about linking.Vincent Richard2007-03-271-3/+7
|
* Changed copyright year to 2007.Vincent Richard2007-01-011-1/+1
|
* Allow 'AUTH=LOGIN' capability for some servers.Vincent Richard2006-12-261-0/+5
|
* Renamed 'vmime::platformDependant' to 'vmime::platform'.Vincent Richard2006-10-111-3/+3
|
* Reissue EHLO after successful STARTTLS.Vincent Richard2006-10-021-30/+42
|
* Fixed typo in comment.Vincent Richard2006-05-051-1/+1
|
* Fixed typo when parsing ESMTP/AUTH response.Vincent Richard2006-05-051-4/+4
|
* Renamed 'byte' to 'byte_t'.Vincent Richard2006-04-181-2/+2
|
* Check for connection before any operation.Vincent Richard2006-02-241-0/+6
|
* Fixed dangling 'else'-block when TLS is not enabled (thanks to Tim Teulings).Vincent Richard2006-02-091-1/+1
|
* Changed copyright year to 2006.Vincent Richard2006-02-051-1/+1
|
* Added service::isSecuredConnection() and service::getConnectionInfos() to ↵Vincent Richard2006-01-291-3/+32
| | | | retrieve information about the connection.
* Added SMTPResponse to read and parse SMTP responses.Vincent Richard2006-01-071-134/+28
|
* Fixed bug when disconnecting SMTP.Vincent Richard2005-11-301-1/+8
|
* Fixed bug in disconnect() when authentication is not needed (thanks to ↵Vincent Richard2005-11-071-0/+2
| | | | Benjamin Biron).
* Added flush() on 'outputStream' + added unit tests for ↵Vincent Richard2005-10-201-0/+2
| | | | 'charsetFilteredOutputStream' when input contains invalid sequences.
* Renamed 'progressionListener' to 'progressListener'.Vincent Richard2005-10-061-1/+1
|
* Added service::setTimeoutHandlerFactory().Vincent Richard2005-10-041-7/+2
|
* Added service::setSocketFactory().Vincent Richard2005-10-041-4/+1
|