[net.emacs] Need "mh-e.ml" style mail system

bartb@tekchips.UUCP (09/30/83)

I would like to procure a version of the "mh-e.ml" mail system built by
Brian Reid that will allow the user to invoke it while running emacs
and not exit emacs upon termination.  I have tried unsucessfully to
modify my current version of "mh-e.ml" to do this.

		BarT
{teklabs!bartb}

reid@Glacier@sri-unix.UUCP (10/05/83)

From:  Brian Reid <reid@Glacier>

I'm not sure what version of mhe you are running, but for at least a
year I've had these lines in my .emacs_pro file :

(autoload "startup" "mh-e.ml")
(autoload "&mh-send" "mh-e.ml")
(defun
    (mhsend
	   (startup)
	   (&mh-send)
    )
)
(bind-to-key "startup" "r")
(bind-to-key "mhsend" "m")

This makes ^X-R load mhe and start reading your mail, and ^X-M load it
to send a message. Works fine. If you exit (who'd want to?) it just
goes back to the recursive level that you were at when you called it.