diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-01-30 18:25:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-01-30 18:25:30 +0000 |
commit | e0c25223851359f5bbbc292adbe1cffd19ab5625 (patch) | |
tree | 8528f041a60a7e432b1b153fcb5f41374f7a2826 | |
parent | bf0caebd61a07e43754907c8ee0e1399e20f315a (diff) | |
download | emacs-e0c25223851359f5bbbc292adbe1cffd19ab5625.tar.gz |
(mail-setup): For mail-self-blind, use user-mail-address.
-rw-r--r-- | lisp/mail/sendmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 19addce426f..59d6a46ff40 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -274,7 +274,7 @@ actually occur.") (if mail-default-reply-to (insert "Reply-to: " mail-default-reply-to "\n")) (if mail-self-blind - (insert "BCC: " (user-login-name) "\n")) + (insert "BCC: " user-mail-address "\n")) (if mail-archive-file-name (insert "FCC: " mail-archive-file-name "\n")) (put-text-property (point) |