From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/65915 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.gnus.general Subject: Re: "Really reply by mail to article author" for gmane groups Date: Sat, 08 Dec 2007 10:25:39 -0800 Message-ID: <200712081825.lB8IPfdY014502@oogie-boogie.ics.uci.edu> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1197138562 21120 80.91.229.12 (8 Dec 2007 18:29:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 8 Dec 2007 18:29:22 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M14410@lists.math.uh.edu Sat Dec 08 19:29:32 2007 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 1J14Qd-0004XT-2R for ding-account@gmane.org; Sat, 08 Dec 2007 19:29:31 +0100 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 1J14Pr-0002ZF-UG; Sat, 08 Dec 2007 12:28:43 -0600 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 1J14Pq-0002Yw-3N for ding@lists.math.uh.edu; Sat, 08 Dec 2007 12:28:42 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1J14Pk-0000x3-4s for ding@lists.math.uh.edu; Sat, 08 Dec 2007 12:28:41 -0600 Original-Received: from oogie-boogie.ics.uci.edu ([128.195.1.41]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1J14Ph-0000Er-00 for ; Sat, 08 Dec 2007 19:28:33 +0100 Original-Received: from mothra.ics.uci.edu (mothra.ics.uci.edu [128.195.6.93]) by oogie-boogie.ics.uci.edu (8.13.6/8.13.6) with ESMTP id lB8IPfdY014502 for ; Sat, 8 Dec 2007 10:25:41 -0800 (PST) In-Reply-To: (Reiner Steib's message of "Sat, 08 Dec 2007 15:20:49 +0100") Original-Lines: 36 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@mothra.ics.uci.edu X-Spam-Score: -2.3 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:65915 Archived-At: Reiner Steib writes: > On Sat, Nov 24 2007, Reiner Steib wrote: > > > On Mon, Nov 12 2007, Reiner Steib wrote: > >> The rationale for the current default is that if the user is a novice > >> and not a Gnus expert (see the doc string of `gnus-expert-user'), he > >> should be warned. This sounds plausible. But I'm not sure if using > >> `S W' in Gmane groups has been considered there. Probably the default > >> should be nil for (very) wide replies. What do people think? > > > > I have installed the following change in Gnus trunk: > > > > --- gnus-msg.el 12 Nov 2007 19:36:53 +0100 7.61 > > +++ gnus-msg.el 24 Nov 2007 23:19:20 +0100 > > @@ -1101,7 +1101,10 @@ > > ((functionp gnus-confirm-mail-reply-to-news) > > (funcall gnus-confirm-mail-reply-to-news gnus-newsgroup-name)) > > (t gnus-confirm-mail-reply-to-news))) > > - (y-or-n-p "Really reply by mail to article author? ")) > > + (if (or wide very-wide) > > + t ;; Ignore gnus-confirm-mail-reply-to-news for wide and very > > + ;; wide replies. > > + (y-or-n-p "Really reply by mail to article author? ")))) > > (let* ((article > > (if (listp (car yank)) > > (caar yank) > > Dan, does it solve your problem? It does. Thanks! > If so, could you please remove the > item from FOR-RELEASE in Emacs? Done.