Bruce Dawson writes: > I'd like to implore you to, instead of taking the time to complain, take > the time to look at the source and propose a fix! You will not only fix > a problem, but you'll come away with feeling good about helping things > out!
For those who use emacs for their mailer, the following snippet might be useful: (it removes email addresses from citations, like above) ;;; Marco Parrone ([EMAIL PROTECTED]) (defun insert-antispam-citation-line () "Insert a citation line missing the email address, so to not cause SPAM on other's mailboxes by having the message archived in mailing list archives." (when message-reply-headers (insert (car (gnus-extract-address-components (mail-header-from message-reply-headers))) ;;; " on " ;;; (mail-header-date message-reply-headers) " writes:\n\n"))) (setq message-citation-line-function 'insert-antispam-citation-line) Regards, --kevin -- Hope is the dream of a waking man. --Aristotle _______________________________________________ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss