Re: [maildropl] Maildrop handling subject containing unicode characters
Brought to you by:
mrsam
|
From: Sam V. <mr...@co...> - 2022-09-10 11:24:52
|
Milan Obuch writes: > Creating file acc with some accented characters, so > > % cat acc > ľšťž > > and executing > > % reformime -o "`cat acc`" | hd > 00000000 0a |.| > 00000001 > > points to reformime itself being the culprit... Could this be > eventually some issue being fixed in newer version? I have Courier > suite 1.1.4 installed and Courier Unicode library 2.2.4, if that's > relevant. Your locale is not UTF-8? $ locale LANG=en_US.UTF-8 LC_CTYPE="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="en_US.UTF-8" LC_NAME="en_US.UTF-8" LC_ADDRESS="en_US.UTF-8" LC_TELEPHONE="en_US.UTF-8" LC_MEASUREMENT="en_US.UTF-8" LC_IDENTIFICATION="en_US.UTF-8" LC_ALL= reformime reads the encoding from the system locale. You can use -c UTF-8 to override it. It's all in the man page. |