aio-libs / aiosmtpd

A reimplementation of the Python stdlib smtpd.py based on asyncio.
https://aiosmtpd.aio-libs.org
Apache License 2.0
325 stars 96 forks source link

LMTP multi-rcpt data response #517

Open jsbucy opened 1 month ago

jsbucy commented 1 month ago

LMTP returns a separate data response per successful RCPT command https://datatracker.ietf.org/doc/html/rfc2033#section-4.2 so handle_DATA should return a list of responses?

FWIW smtplib has the same problem https://github.com/python/cpython/issues/76984