[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug-gnu-libiconv] Worked around: Re: Possible bug in iconv 1.13?
From: |
Edward Burns |
Subject: |
[bug-gnu-libiconv] Worked around: Re: Possible bug in iconv 1.13? |
Date: |
Mon, 28 Oct 2013 08:03:32 -0700 |
EB> Somewhere along the line I picked up this:
EB> ;Message-ID: address@hidden
EB> (setq vm-mime-charset-converter-alist
EB> '(
EB> ("utf-8" "iso-8859-1" "iconv -f utf-8 -t iso-8859-1")
EB> ("windows-1252" "iso-8859-1" "iconv -f utf-8 -t iso-8859-1")
EB> )
EB> )
EB> in a previous attempt to fix this difficult problem.
The above tip, plus the iconv manpage fixed the problem. I added the -c
option to the iconv invocation:
Options controlling conversion problems:
-c When this option is given, characters that cannot be
converted are silently discarded, instead of leading to
a conversion error.
and this allowed the problem emails to render correctly.
However, I still wonder why the email I attached previously causes iconv
to choke.
In any case, thanks for your great work.
Ed