(rfc2047-encode): Use uppercase letters to specify encodings of
authorTSUCHIYA Masatoshi <tsuchiya@namazu.org>
Wed, 12 May 2004 17:31:24 +0000 (17:31 +0000)
committerTSUCHIYA Masatoshi <tsuchiya@namazu.org>
Wed, 12 May 2004 17:31:24 +0000 (17:31 +0000)
MIME-encoded words, in order to improve interoperability with several
broken MUAs.

lisp/ChangeLog
lisp/rfc2047.el

index cc003e7..87627bf 100644 (file)
@@ -1,3 +1,9 @@
+2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
+
+       * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
+       encodings of MIME-encoded words, in order to improve
+       interoperability with several broken MUAs.
+
 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
 
        * mm-view.el (mm-inline-text-html-render-with-w3): Check META
index 3b4cfda..b9b2e36 100644 (file)
@@ -406,7 +406,7 @@ By default, the region is treated as containing addresses (see
                           'Q))))
         (start (concat
                 "=?" (downcase (symbol-name mime-charset)) "?"
-                (downcase (symbol-name encoding)) "?"))
+                (upcase (symbol-name encoding)) "?"))
         (factor (case mime-charset
                   ((iso-8859-5 iso-8859-7 iso-8859-8 koi8-r) 1)
                   ((big5 gb2312 euc-kr) 2)