[Users] [Bug 2655] New: 8bit iso-8859 character sets are qp-encoded

noreply at thewildbeast.co.uk noreply at thewildbeast.co.uk
Wed May 2 12:00:12 CEST 2012


http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=2655

           Summary: 8bit iso-8859 character sets are qp-encoded
           Product: Claws Mail
           Version: 3.8.0
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: trivial
          Priority: P3
         Component: Other
        AssignedTo: users at lists.claws-mail.org
        ReportedBy: madroach+claws at gmerlin.de


The iso-8859 character sets are all 8bit, but are still quoted-printable
encoded. Why? See below procmime.c:1200

EncodingType procmime_get_encoding_for_charset(const gchar *charset)
{
        if (!charset)
                return ENC_8BIT;
        else if (!g_ascii_strncasecmp(charset, "ISO-2022-", 9) ||
                 !g_ascii_strcasecmp(charset, "US-ASCII"))
                return ENC_7BIT;
        else if (!g_ascii_strcasecmp(charset, "ISO-8859-5") ||
                 !g_ascii_strncasecmp(charset, "KOI8-", 5) ||
                 !g_ascii_strcasecmp(charset, "Windows-1251"))
                return ENC_8BIT;
        else if (!g_ascii_strncasecmp(charset, "ISO-8859-", 9))
                return ENC_QUOTED_PRINTABLE;
        else if (!g_ascii_strncasecmp(charset, "UTF-8", 5))
                return ENC_QUOTED_PRINTABLE;
        else
                return ENC_8BIT;
}

-- 
Configure bugmail: http://www.thewildbeast.co.uk/claws-mail/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the Users mailing list