From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/64564 Path: news.gmane.org!not-for-mail From: NAKAJI Hiroyuki Newsgroups: gmane.emacs.gnus.general Subject: nail uses iso8859-1 instead of iso-8859-1 Date: Thu, 26 Apr 2007 00:44:41 +0900 Message-ID: <86abwwtq52.fsf@ra333.heimat.gr.jp> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1177515988 16854 80.91.229.12 (25 Apr 2007 15:46:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 25 Apr 2007 15:46:28 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M13075@lists.math.uh.edu Wed Apr 25 17:46:22 2007 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1HgjhB-0000M2-Ai for ding-account@gmane.org; Wed, 25 Apr 2007 17:46:17 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Hgjfw-0008LT-0y; Wed, 25 Apr 2007 10:45:00 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Hgjfu-0008LD-Ly for ding@lists.math.uh.edu; Wed, 25 Apr 2007 10:44:58 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.63) (envelope-from ) id 1Hgjfo-0004RP-Ta for ding@lists.math.uh.edu; Wed, 25 Apr 2007 10:44:58 -0500 Original-Received: from www.heimat.gr.jp ([60.32.13.194]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Hgjfm-00038J-00 for ; Wed, 25 Apr 2007 17:44:51 +0200 Original-Received: from ra333.heimat.gr.jp.kankyo-u.ac.jp ([IPv6:2001:3e0:a84:0:200:4cff:fe17:573c]) by www.heimat.gr.jp (8.13.8/8.13.8) with ESMTP id l3PFigvq062425 for ; Thu, 26 Apr 2007 00:44:44 +0900 (JST) (envelope-from nakaji@jp.freebsd.org) User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.98 (berkeley-unix) X-Virus-Scanned: by amavisd-new X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:64564 Archived-At: I found some emails are using charset ISO8859-1 which is as same as iso-8859-1. For example, nail uses ISO8859-1. Content-Type: text/plain; charset=ISO8859-1 User-Agent: nail 11.22 3/20/05 How about adding ISO8859-1 in mm-charset-synonym-alist? --- mm-util.el 02 Mar 2007 22:32:29 +0900 7.62 +++ mm-util.el 26 Apr 2007 00:37:27 +0900 @@ -229,6 +229,10 @@ ,@(when (and (not (mm-coding-system-p 'windows-31j)) (mm-coding-system-p 'cp932)) '((windows-31j . cp932))) + ;; ISO8859-1 is ISO-8859-1 + ,@(when (and (not (mm-coding-system-p 'iso8859-1)) + (mm-coding-system-p 'iso-8859-1)) + '((iso8859-1 . iso-8859-1))) ) "A mapping from unknown or invalid charset names to the real charset names. -- NAKAJI Hiroyuki