[mew-int 00434] Re: Adding signature when replying to message

Tatsuya Kinoshita tats at example.com
Wed Aug 29 21:10:30 JST 2001


In message [mew-int 00433], on Wed, 29 Aug 2001,
Reuben Thomas <rrt at example.com> wrote:

> I have the mew-draft-mode-newdraft-hook set to
> mew-draft-insert-signature. I have set up mew-draft-insert-signature
> so that it inserts the signature always at the bottom of the message.
> 
> But when I reply to a message with citation (A in summary mode), the
> signature is *above* the citation.

Please try this:

-- ~/.mew.el -- 
(add-hook 'mew-draft-mode-newdraft-hook 'my-mew-draft-insert-signature)
(add-hook 'mew-before-cite-hook 'my-mew-draft-goto-body-beg)
(defun my-mew-draft-insert-signature ()
  (goto-char (point-max))
  (mew-draft-insert-signature))
(defun my-mew-draft-goto-body-beg ()
  (mew-header-goto-end)
  (forward-line))
---- 

-- 
Tatsuya Kinoshita



More information about the Mew-int mailing list