;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Courtesy of Laura
; Just insert this into your .emacs file,
; Then in rmail, type "R" for mail to the remailer
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun rmail-remailer-mail ()
  (interactive)
  (rmail-mail)
  (end-of-line)
  (insert "remailer@technomage.mit.edu")
  (next-line 1)
  (end-of-line)
  (insert "[Hydra]
From: Your Name <username@site>")
  (goto-char (point-max))
  (insert "
XSTo: 
XSFrom: ")
  )
(setq rmail-mode-hook
      '(lambda ()
	 (define-key (current-local-map) "R" 'rmail-remailer-mail)))


