Gnus在顶部回复签名

时间:2009-06-26 19:57:04

标签: email emacs gnus

在摘要模式中,当我按下R表示gnus-summary-reply-with-original或F表示gnus-summary-followup-with-original时,我的签名会插入原始消息文本的下方。

如何告诉gnus在原始引用文本之前在邮件的最顶部插入我的签名?

2 个答案:

答案 0 :(得分:3)

看起来这不是Gnus内置的一个选项(从v5.10.8开始),所以你必须重新定义其中一个内置函数,如下所示:

(eval-after-load "gnus-msg"
  (defun gnus-inews-yank-articles (articles)
    (let (beg article yank-string)
      (goto-char (point-max))           ; put articles after signature
      (insert "\n")                     ; and one extra newline
                                        ; was this (message-goto-body)
      (while (setq article (pop articles))
        (when (listp article)
          (setq yank-string (nth 1 article)
                article (nth 0 article)))
        (save-window-excursion
          (set-buffer gnus-summary-buffer)
          (gnus-summary-select-article nil nil nil article)
          (gnus-summary-remove-process-mark article))
        (gnus-copy-article-buffer nil yank-string)
        (let ((message-reply-buffer gnus-article-copy)
              (message-reply-headers
               ;; The headers are decoded.
               (with-current-buffer gnus-article-copy
                 (save-restriction
                   (nnheader-narrow-to-headers)
                   (nnheader-parse-naked-head)))))
          (message-yank-original)
          (setq beg (or beg (mark t))))
        (when articles
          (insert "\n")))
      (push-mark)
      (goto-char beg))))

我将'gnus-inews-yank-articles的新定义包装在eval-after-load表单中,以便在适当的时间定义它。显然,如果要允许自定义,请创建一个变量并编写相应的if语句。

答案 1 :(得分:2)

the development version of Gnus(和GNU Emacs)中,您可以将变量message-cite-reply-position设置为“高于”。

我猜你已经知道所有关于TOFU的信息,为什么不知道,所以我不会喋喋不休。