test: finalize CI test coverage and fix dependency import path

This commit is contained in:
2026-06-17 16:39:22 +01:00
parent aa746b780d
commit 91d70cf10c
4 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -344,7 +344,7 @@ class SMTPProxyHandler:
await asyncio.to_thread(self.send_message, envelope.mail_from, envelope.rcpt_tos, envelope.content)
return "250 Message accepted for delivery"
def send_message(self, sender, recipients, data):
def send_message(self, sender, recipients, data):
"""Forward a complete SMTP message to the backend SMTP server."""
message = data.decode("utf-8", errors="replace")
if Settings.BACKEND_SMTP_USE_SSL: