From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/28766 Path: main.gmane.org!not-for-mail From: Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai=?iso-8859-1?q?_Gro=DFjohann?=) Newsgroups: gmane.emacs.gnus.general Subject: Put signature before forwarded message Date: 15 Jan 2000 20:26:22 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165554 31553 80.91.224.250 (21 Oct 2002 01:59:14 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:59:14 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by mailhost.sclp.com (Postfix) with ESMTP id 3325BD051E for ; Sat, 15 Jan 2000 14:29:25 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id NAB06367; Sat, 15 Jan 2000 13:29:09 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 15 Jan 2000 13:28:06 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id NAA12196 for ; Sat, 15 Jan 2000 13:27:56 -0600 (CST) Original-Received: from waldorf.cs.uni-dortmund.de (waldorf.cs.uni-dortmund.de [129.217.4.42]) by mailhost.sclp.com (Postfix) with ESMTP id C8A77D051E for ; Sat, 15 Jan 2000 14:26:24 -0500 (EST) Original-Received: from marcy.cs.uni-dortmund.de (marcy.cs.uni-dortmund.de [129.217.20.159]) by waldorf.cs.uni-dortmund.de with ESMTP id UAA29251 for ; Sat, 15 Jan 2000 20:26:23 +0100 (MET) Original-Received: from lucy.cs.uni-dortmund.de (lucy [129.217.20.160]) by marcy.cs.uni-dortmund.de id UAA15138; Sat, 15 Jan 2000 20:26:23 +0100 (MET) Original-Received: (from grossjoh@localhost) by lucy.cs.uni-dortmund.de (8.9.3/8.9.3/Debian 8.9.3-6) id UAA30939; Sat, 15 Jan 2000 20:26:23 +0100 X-Authentication-Warning: lucy.cs.uni-dortmund.de: grossjoh set sender to Kai.Grossjohann@CS.Uni-Dortmund.DE using -f Original-To: ding@gnus.org Original-Lines: 38 User-Agent: Gnus/5.0804 (Gnus v5.8.4) Emacs/20.5 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:28766 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:28766 May I suggest the following patch for message.el 5.84? $ diff -u lisp/message.el.SAV lisp/message.el --- lisp/message.el.SAV Sat Jan 15 20:17:36 2000 +++ lisp/message.el Sat Jan 15 20:19:48 2000 @@ -299,6 +299,11 @@ :group 'message-forwarding :type 'boolean) +(defcustom message-forward-before-signature t + "*If non-nil, put forwarded message before signature, else after." + :group 'message-forwarding + :type 'boolean) + (defcustom message-wash-forwarded-subjects nil "*If non-nil, try to remove as much old cruft as possible from the subject of messages before generating the new subject of a forward." :group 'message-forwarding @@ -3891,7 +3896,9 @@ (message-mail nil subject)) ;; Put point where we want it before inserting the forwarded ;; message. - (message-goto-body) + (if message-forward-before-signature + (message-goto-body) + (goto-char (point-max))) (if message-forward-as-mime (insert "\n\n<#part type=message/rfc822 disposition=inline>\n") (insert "\n\n")) It adds a new variable message-forward-before-signature which you can set to nil in order to put your signature before any forwarded message when doing C-c C-f. The default value, t, keeps the old behavior. This might well be too simple-minded, though. kai -- A large number of young women don't trust men with beards. (BFBS Radio)