On Wed, Jul 28, 2010 at 12:41:37AM -0600, Paul E Condon wrote: > Thanks for tip about iconv. I do have both WINDOWS-1252 and CP1252 on my > computer. So the second line should not be needed. While composing this > email I suddenly realized that the charset names are probably case sensitive > and my WINDOWS-1252 is not going to work with windows-1252, as used in > the advice given on this list. I changed the advice magic strings to match > what Squeeze is currently programmed to expect, and IT WORKS. Problem solved > until DDs move to what appears to be the Linux community standard of mostly > lower case in charset names.
Yay! On RHEL5 iconv codeset names are all upper-case, and evidently case-sensitive (the iconv_open(3) manpage doesn't say anything about case-sensitivity). On Solaris they are mixed-case, but aliases are explicitly case-insensitive (per the output of iconv -l). So mutt can't blindly up-case charset names -- it'd have to know to do it on Linux but not elsewhere. Nico --