From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/34826 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: Re: Mail-Followup-To interaction with gnus-summary-followup Date: 17 Feb 2001 15:34:11 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: <87y9vdwabb.fsf@sto-kerrig.org> <873ddeiezv.fsf@sto-kerrig.org> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035170677 32287 80.91.224.250 (21 Oct 2002 03:24:37 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:24:37 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by mailhost.sclp.com (Postfix) with ESMTP id 8AB83D04A1 for ; Sat, 17 Feb 2001 15:34:54 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.3/8.9.3) with ESMTP id OAC12271; Sat, 17 Feb 2001 14:34:43 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 17 Feb 2001 14:33:57 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id OAA29270 for ; Sat, 17 Feb 2001 14:33:47 -0600 (CST) Original-Received: from multivac.cwru.edu (multivac.STUDENT.CWRU.Edu [129.22.96.25]) by mailhost.sclp.com (Postfix) with SMTP id E8392D04A1 for ; Sat, 17 Feb 2001 15:34:12 -0500 (EST) Original-Received: (qmail 26383 invoked by uid 500); 17 Feb 2001 20:34:33 -0000 Mail-Followup-To: ding@gnus.org, sneakums@sto-kerrig.org Original-To: Paul J Collins In-Reply-To: Paul J Collins's message of "16 Feb 2001 19:51:50 +0000" User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.7 Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 41 Xref: main.gmane.org gmane.emacs.gnus.general:34826 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:34826 Paul J Collins writes: > The problem in this case is that Mail-Followup-To is not being set the > the list software, just on an ad-hoc basis by a couple of users. Mailing lists aren't supposed to set Mail-Followup-To; that would defeat its purpose. > Having updated Gnus from CVS just now, I note that it's asking me > whether to obey Mail-Followup-To after I type `f'. If I say y, it > uses the poster's Mail-Followup-To, and I get no Cc. As it should be, I think. > If I say n, I get the posters own address in To: and Cc: is set to > their value of Mail-Followup-To. That is indeed broken. > I would really like things to work as they did previously; typing `f' > with message-use-followup-to set to `nil' or a response of `n' to the > query results in the To: field being set to the value of to-list. to-list isn't used for followups, to-address is. Anyway, here's the fix. (Sorry it's not a proper patch, but I haven't learned CVS yet, so it wouldn't be a patch against an up-to-date version anyway.) In message.el, in message-get-reply-headers, look for: (if (or (not wide) to-address) and change it to: (if (and (or (not message-use-followup-to) (not mft)) (or (not wide) to-address)) or some logical equivalent. Can someone commit this? Here'a a Changelog entry: 2001-02-17 Paul Jarc * message.el: Fix bug with Mail-Followup-To/to-address interaction. paul