From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/83119 Path: news.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: keeping to-header addresses in wide mail replies Date: Sun, 05 May 2013 08:38:35 -0700 Message-ID: <87r4hlo2ro.fsf@ericabrahamsen.net> References: <87sj2132u3.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1367768037 12765 80.91.229.3 (5 May 2013 15:33:57 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 5 May 2013 15:33:57 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M31385@lists.math.uh.edu Sun May 05 17:33:56 2013 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UZ0wk-0004Jn-U5 for ding-account@gmane.org; Sun, 05 May 2013 17:33:55 +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 1UZ0vL-0001NG-L1; Sun, 05 May 2013 10:32:27 -0500 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 1UZ0vK-0001N3-0f for ding@lists.math.uh.edu; Sun, 05 May 2013 10:32:26 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1UZ0vI-0001Tc-Fd for ding@lists.math.uh.edu; Sun, 05 May 2013 10:32:25 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1UZ0vG-0006Ke-Go for ding@gnus.org; Sun, 05 May 2013 17:32:22 +0200 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UZ0vF-0003Lo-Lg for ding@gnus.org; Sun, 05 May 2013 17:32:21 +0200 Original-Received: from c-76-28-195-250.hsd1.wa.comcast.net ([76.28.195.250]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 05 May 2013 17:32:21 +0200 Original-Received: from eric by c-76-28-195-250.hsd1.wa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 05 May 2013 17:32:21 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 30 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: c-76-28-195-250.hsd1.wa.comcast.net User-Agent: Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:kEC2XWxYFvsZSm8TU6cBfW9Rgcc= X-Spam-Score: -3.1 (---) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:83119 Archived-At: Mario Peter writes: > Hi All, > > I wonder if there is a possibility to keep addresses in to: and cc: > headers where they are when composing a wide reply to an email. When I > do a wide reply, in the to: header remains only the address of whom I > reply to , all other addresses go to cc: > > What I want is that all addresses in to: are kept in to: > Is there an option to get such a behavior ? > > Maybe I have to play with message-wide-reply-to-function ? > > Thx for suggestions! > Mario You could certainly write your own `message-wide-reply-to-function', but looking at all the checks and alterations that go on in `message-get-reply-headers', you'd pretty much need to copy and paste the whole body of that function, and then change just the end. Another option is the function `message-reduce-to-to-cc', which nearly does what you want: it *replaces* the contents of To with the contents of Cc, instead of concatenating them. It would be a one- or two-line change to that function to make it do what you want, though. Then you'd have to call it explicitly. Eric