this post was submitted on 04 Feb 2026
91 points (100.0% liked)

Pop Culture

117 readers
1 users here now

founded 4 months ago
MODERATORS
 

How did he get banned lmao

you are viewing a single comment's thread
view the rest of the comments
[–] NonWonderDog@hexbear.net 12 points 1 month ago* (last edited 1 month ago) (1 children)

In short, emails still use an old ASCII protocol from the 80s, and old servers used unix tools that read pipes line-by-line.
To avoid emails with long lines slowing down the servers, they break long lines before sending them.
Because it's ASCII, they use an ASCII control sequence to mark inserted line breaks.
That sequence is =␍␊.
There's some sequence of screwups in the email export that ended up with last word =␍␊first word getting replaced with last word =irst word instead of last word first word.

[–] ClathrateG@hexbear.net 7 points 1 month ago (1 children)

Thanks for the explanation, what's up with = appearing in the middle of words? does the protocol inserts breaks after a set number of chars, rather in the nearest whitespace to a set number of chars?