From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/63832 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: ietf-drums-parse-address, gnus-extract-address-components, mail-extract-address-components Date: Tue, 17 Oct 2006 07:47:47 +0900 Organization: Emacsen advocacy group Message-ID: References: <87mz851t59.fsf@mobile.repose.cx> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Trace: sea.gmane.org 1161039070 18496 80.91.229.2 (16 Oct 2006 22:51:10 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 16 Oct 2006 22:51:10 +0000 (UTC) Original-X-From: ding-owner+m12359@lists.math.uh.edu Tue Oct 17 00:51:07 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GZbIX-0003dy-Ur for ding-account@gmane.org; Tue, 17 Oct 2006 00:51:06 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1GZbIU-0001cD-00; Mon, 16 Oct 2006 17:51:02 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1GZbG5-0001c8-00 for ding@lists.math.uh.edu; Mon, 16 Oct 2006 17:48:33 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.52) id 1GZbG3-0003Ba-1K for ding@lists.math.uh.edu; Mon, 16 Oct 2006 17:48:33 -0500 Original-Received: from washington.hostforweb.net ([66.225.201.13]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1GZbFt-0001XL-00 for ; Tue, 17 Oct 2006 00:48:21 +0200 Original-Received: from [205.234.185.198] (port=57540 helo=mail.jpl.org) by washington.hostforweb.net with esmtpa (Exim 4.52) id 1GZbFm-0007iL-6n for ding@gnus.org; Mon, 16 Oct 2006 17:48:24 -0500 Original-To: ding@gnus.org X-Hashcash: 1:20:061016:ding@gnus.org::cqYduSCyyL8/RG90:00003l2A X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.0 (gnu/linux) Cancel-Lock: sha1:WVArYykBhYjXzVa/6/ROhBm4uoY= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:63832 Archived-At: >>>>> In >>>>> Reiner Steib wrote: > I don't know what's the difference between > `mail-extract-address-components' and `ietf-drums-parse-address' > (speed, reliability, ...)? Anyone? `ietf-drums-parse-address' doesn't work with non-ASCII names but `gnus-extract-address-components' does. So does `mail-extract-address-components' but it also performs a voodoo ceremony (which is currently disabled for Japanese names by default). (ietf-drums-parse-address "王ヶ頭ホテル ") => ("ougatou@example.com") (gnus-extract-address-components "王ヶ頭ホテル ") => ("王ヶ頭ホテル" "ougatou@example.com") (let ((mail-extr-disable-voodoo nil)) ;; Enable voodoo. (mail-extract-address-components "王ヶ頭ホテル ")) => ("王. ヶ. 頭. ホテル" "ougatou@example.com")