From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/67449 Path: news.gmane.org!not-for-mail From: Reiner Steib Newsgroups: gmane.emacs.gnus.general Subject: Re: message-idna problem Date: Thu, 25 Sep 2008 18:48:55 +0200 Message-ID: <87skronpc8.fsf@marauder.physik.uni-ulm.de> References: Reply-To: Reiner Steib NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1222362159 9827 80.91.229.12 (25 Sep 2008 17:02:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 25 Sep 2008 17:02:39 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M15899@lists.math.uh.edu Thu Sep 25 19:03:33 2008 connect(): Connection refused 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 1KiuET-0000pv-Ab for ding-account@gmane.org; Thu, 25 Sep 2008 19:02:25 +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 1KiuDP-00023u-5k; Thu, 25 Sep 2008 12:01:19 -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 1KiuDN-00023f-Uh for ding@lists.math.uh.edu; Thu, 25 Sep 2008 12:01:17 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1KiuDK-0001eE-NP for ding@lists.math.uh.edu; Thu, 25 Sep 2008 12:01:17 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1KiuDP-0005iV-00 for ; Thu, 25 Sep 2008 19:01:19 +0200 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1KiuDG-0008UU-CK for ding@gnus.org; Thu, 25 Sep 2008 17:01:10 +0000 Original-Received: from p4fd46e70.dip.t-dialin.net ([79.212.110.112]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 25 Sep 2008 17:01:10 +0000 Original-Received: from Reiner.Steib by p4fd46e70.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 25 Sep 2008 17:01:10 +0000 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 44 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: p4fd46e70.dip.t-dialin.net X-Face: #vK]N[`vqjuod*|)'[iD7/"3AB-ApT%fmN"LWAg@oS7OesGv~)n[OBTLM#I="J'Y^-7I I/ps7o_'IK@#-Rs{::DZ@O8yS|fexe,XslY[:dNWOb~>?mC-&i_c)say:"\IpA.5U.b]'NY;Pks{lb h.+#6%DpZuaK3dcHB`Av3zc:r!C%~s0&m,tWj]&},qg.+0ww2gK%f!:GK|wMl.I!(voY*1"^li8"~B BNG)9LvPi?^DMR-GVDnZqhu*3Hi,+g=wFhI)BL6&u{EOVEHjVEVq~d?_}lMntWAc3(6?kftjc>_f>! g0wM(qPM$d5]^TT_Qyi&L?LGVG)SHN;Gk/,pkY9,~ Mail-Copies-To: nobody User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.1 (gnu/linux) Cancel-Lock: sha1:BDluucja+qQOrEmMp953RVb1zE8= X-Spam-Score: -3.6 (---) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:67449 Archived-At: On Thu, Sep 25 2008, Katsumi Yamaoka wrote: > When I send a mail containing the From header like > > From: 山岡 克美 > > the *Messages* buffer collects the following warnings: > > Unknown symbol: 山 > Unknown symbol: 岡 > Unknown symbol: 克 > Unknown symbol: 美 > > I've never noticed this since I rarely use Japanese names in the > message header. It arises if `message-use-idna' is non-nil and > there is a name of which the first letter is a non-ASCII character > in the header. I get "Unknown symbol: Ä" independent on the value of `message-use-idna': ELISP> (let ((message-use-idna nil)) (mail-header-parse-addresses "Äpfel Birne ")) (("foo@bar.invalid" . "pfel Birne")) ELISP> (let ((message-use-idna t)) (mail-header-parse-addresses "Äpfel Birne ")) (("foo@bar.invalid" . "pfel Birne")) > Those warnings are the ones that `ietf-drums-parse-addresses' > (a.k.a. `mail-header-parse-addresses') that > `message-idna-to-ascii-rhs-1' uses issues. Assuming there will > potentially be non-ASCII names when `message-idna-to-ascii-rhs-1' > runs, how about using `mail-extract-address-components' rather > than an ietf-drums- function that does not support non-ASCII > characters? This problem might not cause a real harm, though. Fine with me. Bye, Reiner. -- ,,, (o o) ---ooO-(_)-Ooo--- | PGP key available | http://rsteib.home.pages.de/