From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Volkan YAZICI Newsgroups: gmane.emacs.devel Subject: Re: [yazicivo@ttnet.net.tr: Locale Dependent Downcasing in smtpmail] Date: Tue, 03 Apr 2007 16:44:40 +0300 Message-ID: <87y7l9608n.fsf@ttnet.net.tr> References: <87wt0uhee5.fsf@ttnet.net.tr> <873b3hssyt.fsf@mocca.josefsson.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1175614590 15357 80.91.229.12 (3 Apr 2007 15:36:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 3 Apr 2007 15:36:30 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org, Kenichi Handa To: Simon Josefsson Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Apr 03 17:36:22 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HYl3R-0008Hf-CP for ged-emacs-devel@m.gmane.org; Tue, 03 Apr 2007 17:36:17 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HYl6a-0004qA-Rq for ged-emacs-devel@m.gmane.org; Tue, 03 Apr 2007 11:39:32 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HYjM4-00021W-5W for emacs-devel@gnu.org; Tue, 03 Apr 2007 09:47:24 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HYjM3-000215-3i for emacs-devel@gnu.org; Tue, 03 Apr 2007 09:47:23 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HYjM2-000211-Un for emacs-devel@gnu.org; Tue, 03 Apr 2007 09:47:22 -0400 Original-Received: from mail.ttnet.net.tr ([212.175.13.129] helo=fep07.ttnet.net.tr) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HYjIr-0005Vi-Bi; Tue, 03 Apr 2007 09:44:05 -0400 Original-Received: from (unknown [192.168.8.107]) by AVGW-I-4.ttnet.net.tr with smtp id 6027_61af33ea_e1e9_11db_97b5_001422175f2f; Tue, 03 Apr 2007 16:44:04 +0300 Original-Received: from alamut ([85.97.126.175]) by fep07.ttnet.net.tr with ESMTP id <20070403134401.GSEP3604.fep07.ttnet.net.tr@alamut>; Tue, 3 Apr 2007 16:44:01 +0300 Original-Received: from (unknown [85.97.126.175]) by AVGW-I-1.ttnet.net.tr with smtp id 08f6_5f678ace_e1e9_11db_8bf3_001422175f0e; Tue, 03 Apr 2007 16:43:58 +0300 In-Reply-To: <873b3hssyt.fsf@mocca.josefsson.org> (Simon Josefsson's message of "Tue\, 03 Apr 2007 11\:33\:14 +0200") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.96 (gnu/linux) X-NAI-Spam-Rules: 1 Rules triggered BAYES_20=-0.5 X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-Mailman-Approved-At: Tue, 03 Apr 2007 11:39:23 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:68998 Archived-At: Simon Josefsson writes: > I note that for future compatibility, we could treat this as UTF-8 but > I believe it will cause more failures than it is worth. There are no > advantages today in doing that, and nobody can tell whether there will > be any advantages from it ever. So the safest is likely to leave this > as ASCII-only. I agree. BTW, here are some more buggy line from lisp/gnus: (These are just a small minority of the problematic lines as far as I can see from "grep downcase -RHn lisp/gnus") nndoc.el:511: (intern (downcase (mail-header-strip encoding)))))) nndoc.el:905: subtype (downcase (match-string 2 content-type)) rfc2047.el:674: (concat "=3D?" (downcase (symbol-name mime-charset)) Failing Cases: (downcase "ISO-8859-1") =3D=3D> =C4=B1so-8859-1 (downcase "text/plain") =3D=3D> text-pla=C4=B1n Regards.