aiosmtpd icon indicating copy to clipboard operation
aiosmtpd copied to clipboard

A reimplementation of the Python stdlib smtpd.py based on asyncio.

Results 116 aiosmtpd issues
Sort by recently updated
recently updated
newest added
trafficstars

## What do these changes do? Changes authentication mechanism to uppercase, so that auth_XYZ also handles "AUTH xyz" requests ([RFC 4954 Section 8](https://www.rfc-editor.org/rfc/rfc4954#section-8) compliant). ## Are there changes in behavior...

Hello, I am currently implementing a smtp handler from requests coming from a C# System.Net.Mail.SMTPClient instance with credentials ([code](https://github.com/Cloud9Developer/Jellyfin-Newsletter-Plugin/blob/0c382440a75844a08e45a3dae13ed30d238d1eed/Jellyfin.Plugin.Newsletters/Emails/smtp.cs#L62-L65)). I didn't understand the problem until I discovered with tcpdump that...

## What do these changes do? Use trustme for test TLS certificate and key With the current approach TLS certificate and key are hardcoded in separate files and distributed as...

Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 5.0.0 to 6.1.1. Changelog Sourced from pytest-cov's changelog. 6.1.1 (2025-04-05) Fixed breakage that occurs when --cov-context and the no_cover marker are used together. 6.1.0 (2025-04-01) Change terminal...

dependencies
python

Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.6.1 to 7.8.0. Changelog Sourced from coverage's changelog. Version 7.8.0 — 2025-03-30 Added a new source_dirs setting for symmetry with the existing source_pkgs setting. It's preferable to...

dependencies
python

Bumps [flake8-pytest-style](https://github.com/m-burst/flake8-pytest-style) from 2.0.0 to 2.1.0. Commits 2c53993 Bump version: 2.0.0 → 2.1.0 c61fce2 Use project section in pyproject where possible (#327) fac9016 Add pytest.warns checks similar to existing for...

dependencies
python

Bumps [mypy](https://github.com/python/mypy) from 1.10.1 to 1.15.0. Changelog Sourced from mypy's changelog. Mypy Release Notes Next Release ... Mypy 1.15 We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI)....

dependencies
python

I followed the instructions in the "BUILDING" section in README: ``` git clone [email protected]:aio-libs/aiosmtpd.git python3 -m venv .venv source .venv/bin/activate python setup.py install ``` This produces: ``` Traceback (most recent...

According to [document of typing.ByteString](https://docs.python.org/3.13/library/typing.html#typing.ByteString), it _deprecated since version 3.9, will be removed in version 3.14_. ```pycon $ python Python 3.14.0a6 (main, Mar 15 2025, 08:53:03) [GCC 11.4.0] on linux...