From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/34848 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: 18 Feb 2001 18:14:41 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: <87y9vdwabb.fsf@sto-kerrig.org> <873ddeiezv.fsf@sto-kerrig.org> <2n66i99g4u.fsf@tiger.jia.vnet> <87itm7ex9i.fsf@sto-kerrig.org> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035170694 32388 80.91.224.250 (21 Oct 2002 03:24:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:24:54 +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 DB5B5D049E for ; Sun, 18 Feb 2001 18:15:43 -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 RAC01324; Sun, 18 Feb 2001 17:15:33 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 18 Feb 2001 17:14:26 -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 RAA06140 for ; Sun, 18 Feb 2001 17:14:15 -0600 (CST) Original-Received: from multivac.cwru.edu (multivac.STUDENT.CWRU.Edu [129.22.96.25]) by mailhost.sclp.com (Postfix) with SMTP id D6535D049E for ; Sun, 18 Feb 2001 18:14:44 -0500 (EST) Original-Received: (qmail 28520 invoked by uid 500); 18 Feb 2001 23:15:03 -0000 Mail-Followup-To: ding@gnus.org, sneakums@sto-kerrig.org Original-To: Paul J Collins In-Reply-To: <87itm7ex9i.fsf@sto-kerrig.org> (Paul J Collins's message of "18 Feb 2001 17:06:40 +0000") User-Agent: Gnus/5.090001 (Oort Gnus v0.01) Emacs/20.7 Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 10 Xref: main.gmane.org gmane.emacs.gnus.general:34848 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:34848 --=-=-= Paul J Collins writes: > I'm still seeing this problem, where the Mail-Followup-To header's > value is being used on `f', even when message-use-followup-to is nil. Ok, here's the fix (against current CVS). For real, this time. :) paul --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=message.patch --- message.el~ Sun Feb 18 18:09:07 2001 +++ message.el Sun Feb 18 18:08:39 2001 @@ -3921,7 +3921,8 @@ mct (message-fetch-field "mail-copies-to") reply-to (message-fetch-field "reply-to") mrt (message-fetch-field "mail-reply-to") - mft (message-fetch-field "mail-followup-to")) + mft (and message-use-followup-to + (message-fetch-field "mail-followup-to"))) ;; Handle special values of Mail-Copies-To. (when mct @@ -3933,15 +3934,14 @@ (equal (downcase mct) "poster")) (setq mct (or mrt reply-to from))))) - (if (and (or (not message-use-followup-to) - (not mft)) + (if (and (not mft) (or (not wide) to-address)) (progn (setq follow-to (list (cons 'To (or to-address mrt reply-to from)))) - (when (and (and wide (or mft mct)) - (not (member (cons 'To (or mft mct)) follow-to))) - (push (cons 'Cc (or mft mct)) follow-to))) + (when (and (and wide mct) + (not (member (cons 'To mct) follow-to))) + (push (cons 'Cc mct) follow-to))) (let (ccalist) (save-excursion (message-set-work-buffer) --=-=-=--