]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-resend): Use user-mail-address.
authorRichard M. Stallman <rms@gnu.org>
Tue, 29 Jul 1997 02:15:28 +0000 (02:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 29 Jul 1997 02:15:28 +0000 (02:15 +0000)
lisp/mail/rmail.el

index 1318c7040f94ac592c93e4ff2bad8a7b4849717e..2b2e8cac3feaa1657af155d190293d3cf2bf01f2 100644 (file)
@@ -2636,15 +2636,14 @@ ADDRESSES should be a single address, a string consisting of several
 addresses separated by commas, or a list of addresses.
 
 Optional FROM is the address to resend the message from, and
-defaults to the username of the person redistributing the message.
-Optional COMMENT is a string that will be inserted as a comment in the
-resent message.
+defaults from the value of `user-mail-address'.
+Optional COMMENT is a string to insert as a comment in the resent message.
 Optional ALIAS-FILE is alternate aliases file to be used by sendmail,
 typically for purposes of moderating a list."
   (interactive "sResend to: ")
   (require 'sendmail)
   (require 'mailalias)
-  (if (not from) (setq from (user-login-name)))
+  (if (not from) (setq from user-mail-address))
   (let ((tembuf (generate-new-buffer " sendmail temp"))
        (mail-header-separator "")
        (case-fold-search nil)