SMTP relay corrupts 8-bit message content #4
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
SMTPProxyHandler.send_message (proxy_server.py:349) does:
errors="replace" destroys any non-UTF-8 byte, damaging 8-bit bodies and attachments. smtplib.sendmail accepts bytes directly.
Fix:
Acceptance: