From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/67077 Path: news.gmane.org!not-for-mail From: Uwe Brauer Newsgroups: gmane.emacs.gnus.general Subject: Re: BUG: ngnus-0.10 can't send messages Date: Tue, 24 Jun 2008 15:37:10 +0200 Message-ID: <87r6anned5.fsf@mat.ucm.es> References: <87od60tp06.fsf@mat.ucm.es> <87hcbpkcb7.fsf@mat.ucm.es> <4860C51B.5030604@mat.ucm.es> Reply-To: Uwe Brauer NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1214314720 21697 80.91.229.12 (24 Jun 2008 13:38:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 24 Jun 2008 13:38:40 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M15543@lists.math.uh.edu Tue Jun 24 15:39:25 2008 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 1KB8jk-00081N-Kj for ding-account@gmane.org; Tue, 24 Jun 2008 15:39:08 +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 1KB8iL-0007QC-GS; Tue, 24 Jun 2008 08:37:41 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1KB8iJ-0007Pu-Vn for ding@lists.math.uh.edu; Tue, 24 Jun 2008 08:37:39 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1KB8iB-0005Kh-AN for ding@lists.math.uh.edu; Tue, 24 Jun 2008 08:37:39 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1KB8iU-0008V2-00 for ; Tue, 24 Jun 2008 15:37:50 +0200 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1KB8i4-00017N-Ff for ding@gnus.org; Tue, 24 Jun 2008 13:37:24 +0000 Original-Received: from maportatil12.quim.ucm.es ([147.96.6.137]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 24 Jun 2008 13:37:24 +0000 Original-Received: from oub by maportatil12.quim.ucm.es with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 24 Jun 2008 13:37:24 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 63 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: maportatil12.quim.ucm.es X-Hashcash: 1:20:080624:gmane.emacs.gnus.general::2fZJ9Cwq0Gmww7sC:00000000000000000000000000000000000002TkK User-Agent: Gnus/5.110009 (No Gnus v0.9) XEmacs/21.4.19 (linux) Cancel-Lock: sha1:KkIB+XkONcrd72Brkd8w/QQ1W70= X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:67077 Archived-At: >>>>> "Katsumi" == Katsumi Yamaoka writes: >>>>> Uwe Brauer wrote: >> the question still puzzles me, why does everything work with >> ngnus-0.6? > Do you know where the regexp "\\ Isn't it in your XEmacs init file? GREP found no file containing > "aeiou" in my system. Still I don't understand why it works in 0.6. But yes there are files with aeiou on my system To start with my init file, which has (defadvice mail-extract-address-components (after capitalize first activate) "Capitalize names extracted from first.last@..., first_last@..., and \"first last\" <...> addresses." (let ((case-fold-search nil)) (if (or (string-match "\\`[a-z---]+\\([._][a-z---]+\\)+@" (ad-get-arg 0)) ; ADDRESS (string-match "\\`\"[a-z---]+\\( [a-z---]+\\)+\" <" (ad-get-arg 0))) ; ADDRESS (setcar ad-return-value (capitalize (car ad-return-value)))))) (defadvice mail-extract-address-components (after capitalize-mc last activate) "Fix capitalization of \"Mc\" names, e.g. \"Mcdonald\" -> \"McDonald\"." (let ((full-name (car ad-return-value)) (case-fold-search nil) (start 0)) (while (and full-name (string-match "\\ In addition, I found in and around `message-bogus-recipient-p' > and `mail-extract-address-components' no `string-match' form in > which the third argument `0' (or equivalent) is specified. So, > I guess the backtrace might have reported the one caused by the > one other than `mail-extract-address-components'. How about re- > reproducing the problem after loading some doubtful el (not elc) > files? Those will be the ones that the following program reports > (type C-j at the end of the last line in the *scratch* buffer): ok I will try that after having tried, that for should me this tricks. Uwe Brauer