From mboxrd@z Thu Jan 1 00:00:00 1970 From: Junio C Hamano Subject: Re: email address handling Date: Sat, 02 Aug 2008 10:50:48 -0700 Message-ID: <7vabfvnw5j.fsf@gitster.siamese.dyndns.org> References: <20080801131127.20b3acfd.akpm@linux-foundation.org> <20080801132415.0b0314e4.akpm@linux-foundation.org> <20080801135421.5ca0f6af.akpm@linux-foundation.org> <7vvdykqub6.fsf@gitster.siamese.dyndns.org> <20080801145804.85041bbd.akpm@linux-foundation.org> <20080801221539.GA8617@mit.edu> <20080801152720.56dbff09.akpm@linux-foundation.org> <20080801154902.c60717e5.akpm@linux-foundation.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Johannes Schindelin , Andrew Morton , Theodore Tso , git@vger.kernel.org To: Linus Torvalds X-From: git-owner@vger.kernel.org Sat Aug 02 19:52:03 2008 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1KPLGr-0000HJ-5Z for gcvg-git-2@gmane.org; Sat, 02 Aug 2008 19:52:01 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758590AbYHBRu6 (ORCPT ); Sat, 2 Aug 2008 13:50:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757774AbYHBRu6 (ORCPT ); Sat, 2 Aug 2008 13:50:58 -0400 Received: from a-sasl-fastnet.sasl.smtp.pobox.com ([207.106.133.19]:56767 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758567AbYHBRu5 (ORCPT ); Sat, 2 Aug 2008 13:50:57 -0400 Received: from localhost.localdomain (localhost [127.0.0.1]) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTP id CE3B04CF2C; Sat, 2 Aug 2008 13:50:55 -0400 (EDT) Received: from pobox.com (ip68-225-240-211.oc.oc.cox.net [68.225.240.211]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTPSA id F2D494CF2B; Sat, 2 Aug 2008 13:50:49 -0400 (EDT) In-Reply-To: (Linus Torvalds's message of "Sat, 2 Aug 2008 09:20:17 -0700 (PDT)") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) X-Pobox-Relay-ID: 8E957174-60BB-11DD-9415-CE28B26B55AE-77302942!a-sasl-fastnet.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Linus Torvalds writes: > On Sat, 2 Aug 2008, Johannes Schindelin wrote: >> >> Ah, there lies the rub (you forgot that the original complaint was about >> a comma, and pretty=email does not handle those): > > Indeed. > > I wonder where that is_rfc2047_special() function came from. The list of > "special" characters is totally bogus. > > The real RFC has comma, but it has a lot of other characters too: > > especials = "(" / ")" / "<" / ">" / "@" / "," / ";" / ":" / > "<" / "> / "/" / "[" / "]" / "?" / "." / "=" > > because basically the rfc2047 encoding has to be a superset of the 822 > (and later 2822) encodings. Hmm, you're right. This has to be trickier than I originally thought it would be ... ;-)