leandro noferini wrote:

> I would  like to change  the first line  of the answers not  writing the
> email address  of the original poster  but only the  names (because it's
> not good  writing email addresses in  the body of messages)  but I can't
> understand how.

many ways to get there. i customized `message-insert-citation-line', ymmv:

--8<---------------cut here---------------start------------->8---
(defun message-insert-citation-line ()
  "A replacement of the original `message-insert-citation-line'."
  (insert (if (message-news-p)
              (let ((author (replace-regexp-in-string 
                             "[()]\\| ?[^ [EMAIL PROTECTED] ]* ?" ""
                             (mail-header-from message-reply-headers))))
                (if (string= author "")
                    "John R. Doe"
                  author))
            "You")
          " wrote:\n\n"))
--8<---------------cut here---------------end--------------->8---

-- 
  np: no song
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to