False encoding of iOS emails #67
Labels
No labels
bug
enhancement
good first issue
halted
help wanted
security
wait for upstream
wait to be tested
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: b3yond/ticketfrei#67
Loading…
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?
Author: @J04n5mith Posted at: 03.12.2018 16:19
If you send an email to the bot from an iOS device it encodes false.
This text:
4 kontis (2 m mit Mütze, 1 m mit Bart und 1 w älter) am Rathenauplatz Richtung Bahnhof.
Encodes to this:
4 kontis (2 m mit M=C3=BCtze, 1 m mit Bart und 1 w =C3=A4lter) am Rathenaupl=
atz Richtung Bahnhof.=20
Author: @git-sid Posted at: 04.12.2018 10:22
Looks like a strange ASCII representation of UTF-8 encoding, where
%
is sometimes (?) replaced with=
.Might be related to #27
Author: @git-sid Posted at: 08.01.2019 09:29
I've found what it is!
It's the wrong encoding! Or rather it's the quoted printable version of the utf-8 string.
we could implement something like this to fix future encoding errors in email reports.