Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix UnicodeDecodeError error when sending digests #10

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

cpanel-jared
Copy link

Case CPANEL-46529

If a digest contained a message that had non-utf8 characters, sending the digest would fail with a UnicodeDecodeError. We now check the messages characterset and use that to decode the message into a string.

@cpanel-jared cpanel-jared marked this pull request as draft March 27, 2025 17:35
Case CPANEL-46529

If a digest contained a message that had non-utf8 characters, sending
the digest would fail with a UnicodeDecodeError. We now check the
messages characterset and use that to decode the message into a string.
Jared Wright and others added 3 commits March 27, 2025 17:22
Decode rather than encoding before sending adminsubscribeack.txt
email. Previously, an effort was made to encode the member's name in
the appropriate charset before passing it to formataddr(). Now, this
is wrong, and we actually need to ensure that it is *not* encoded
yet. What gets passed into formataddr() must be str, not bytes.

It's possible for name to be either str or bytes depending on which
version of Mailman + Python saved the info to disk previously,
so we still need to check which it is before attempting to decode.
This only applies to 'nameu' because 'email' never got this special
encoding treatment.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant