mirror of
https://github.com/HaschekSolutions/opentrashmail.git
synced 2026-04-25 06:35:55 +03:00
[GH-ISSUE #73] UnicodeDecodeError #53
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/opentrashmail#53
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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?
Originally created by @aleohl on GitHub (Dec 15, 2023).
Original GitHub issue: https://github.com/HaschekSolutions/opentrashmail/issues/73
Hello,
During receive of an email I got this error message
'utf-8' codec can't decode byte 0xf6 in position 499: invalid start byte.I do think it was caused by
åäöin the subject or body but not sure yet. Will try to reproduce and check what I can do in the code.Thanks.
@geek-at commented on GitHub (Dec 15, 2023):
I too have seen this error but was never able to reproduce it. Please tell me when you can reproduce it 😁
@aleohl commented on GitHub (Dec 15, 2023):
I have the same issue, can't seem to find a way to reproduce it. Strange stuff
@DasDunkel commented on GitHub (Jan 19, 2024):
I have managed to reproduce this error by using
öin the recipient addressUsing it within the subject/body does not seem to cause the error
I'm using version 1.4.4
@sebastianflint commented on GitHub (Jan 23, 2024):
I have the same error. Happens when sending mail from Outlook Client and inserting characters like "ö,ä"
@sebastianflint commented on GitHub (Jan 23, 2024):
Still the same error with the newest 1.4.5 version.
Remote Server returned '554 5.0.0 <[45.9.60.49] #5.0.0 smtp; 5.3.0 - Other mail system problem 500-"Error: (UnicodeDecodeError) 'utf-8' codec can't decode byte 0xe4 in position 0: invalid continuation byte" (delivery attempts: 0)>'
@Pay1337 commented on GitHub (Apr 9, 2024):
I solved the problem by using "latin1" instead of "utf8" in mailserver3.py.
@geek-at commented on GitHub (Apr 15, 2024):
Thanks for telling us this @Pay1337
I wonder though if this means it would crash, receiving UTF8 encoded email 🧐
@realalexandergeorgiev commented on GitHub (Nov 5, 2024):
If you register at https://www.rmv.de/ you can reproduce it.
Cant retry, seems like there is a rate limit. If someone wants to try:
(vi /var/www/opentrashmail/python/mailserver3.py)
fixed in fork, works for latin1:
github.com/realalexandergeorgiev/opentrashmail@9aeae959c2@geek-at commented on GitHub (Nov 14, 2024):
Oh nice, sounds like a good solution until the root cause is fixed. Can you do a pull request?