Skip to content

Releases: cole/aiosmtplib

v1.1.0

Choose a tag to compare

@cole cole released this 09 Sep 15:52
  • Feature: Added send coroutine api.

  • Feature: Added SMTPUTF8 support for UTF8 chars in addresses.

  • Feature: Added connected socket and Unix socket path connection options.

  • Feature: Wait until the connect coroutine is awaited to get the event loop.
    Passing an explicit event loop via the loop keyword argument is deprecated
    and will be removed in version 2.0.

  • Cleanup: Set context for timeout and connection exceptions properly.

  • Cleanup: Use built in start_tls method on Python 3.7+.

  • Cleanup: Timeout correctly if TLS handshake takes too long on Python 3.7+.

  • Cleanup: Updated SMTPProcotol class and removed StreamReader/StreamWriter
    usage to remove deprecation warnings in 3.8.

  • Bugfix: EHLO/HELO if required before any command, not just when using
    higher level commands.

  • Cleanup: Replaced asserts in functions with more useful errors (e.g.
    RuntimeError).

  • Cleanup: More useful error messages for timeouts (thanks ikrivosheev!),
    including two new exception classes, SMTPConnectTimeoutError and
    SMTPReadTimeoutError

v1.0.6

Choose a tag to compare

@cole cole released this 09 Sep 15:52
  • Bugfix: Set default timeout to 60 seconds as per documentation
    (previously it was unlimited).

v1.0.5

Choose a tag to compare

@cole cole released this 09 Sep 15:53
  • Bugfix: Connection is now closed if an error response is received
    immediately after connecting.

v1.0.4

Choose a tag to compare

@cole cole released this 09 Sep 15:53
  • Bugfix: Badly encoded server response messages are now decoded to utf-8,
    with error chars escaped.

  • Cleanup: Removed handling for exceptions not raised by asyncio (in
    SMTPProtocol._readline)

v1.0.3

Choose a tag to compare

@cole cole released this 09 Sep 15:53
  • Bugfix: Removed buggy close connection on del

  • Bugfix: Fixed old style auth method parsing in ESMTP response.

  • Bugfix: Cleanup transport on exception in connect method.

  • Cleanup: Simplified SMTPProtocol.connection_made, main

v1.0.2

Choose a tag to compare

@cole cole released this 09 Sep 15:54
  • Bugfix: Close connection lock on on SMTPServerDisconnected

  • Feature: Added cert_bundle argument to connection init, connect and starttls
    methods

  • Bugfix: Disconnected clients would raise SMTPResponseException: (-1 ...)
    instead of SMTPServerDisconnected

1.0.1: bugfix release

Choose a tag to compare

@cole cole released this 07 Apr 03:08
  • Commands were getting out of order when using the client as a context manager within a task
  • multiple tasks calling connect would get confused
  • EHLO/HELO responses were being saved even after disconnect
  • RuntimeError on client cleanup if event loop was closed
  • CRAM-MD5 auth was not working
  • AttributeError on STARTTLS under uvloop

1.0.0: Semantic versioning

Choose a tag to compare

@cole cole released this 07 Apr 03:17

Initial feature complete release with stable API.