Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!mit-eddie!PREP.AI.MIT.EDU!mly From: mly@PREP.AI.MIT.EDU (Richard Mlynarik) Newsgroups: comp.emacs Subject: RMAIL reply-to-sender-only Message-ID: <8710142238.AA10492@EDDIE.MIT.EDU> Date: Wed, 14-Oct-87 18:42:28 EDT Article-I.D.: EDDIE.8710142238.AA10492 Posted: Wed Oct 14 18:42:28 1987 Date-Received: Fri, 16-Oct-87 05:30:12 EDT Sender: daemon@eddie.MIT.EDU Reply-To: mly-prep@prep.ai.mit.edu Lines: 21 This, or something closely resembling it, should work as part of one's emacs init file: (defun rmail-reply-to-sender-only () "Reply to the sender of the current message. Does not address the reply to any CC recipients. While composing the reply, use \\[mail-yank-original] to yank the original message into it." (interactive) (rmail-reply t)) (setq rmail-mode-hook (function (lambda () ;; case-sensitivity for pointy-headed un*x weenies (local-set-key "r" 'rmail-reply-to-sender-only) (local-set-key "R" 'rmail-reply)))) [To avoid other sorts of embarrassment (of the kind which should be experienced by people who CC info-gnu-emacs, for example) have your site's customisation file include mailing lists to which one should not normally automatically reply in `rmail-default-dont-reply-to-names'.]