diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-05-20 10:47:32 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-05-20 11:02:50 -0700 |
commit | ee2916c6d25f963649c9fe2583faf66538f60180 (patch) | |
tree | fc4d9a789d21fe7efd1e7d808bcc4af8f9fa5646 /lisp/mail/uce.el | |
parent | a32412b8aa3dc14d810054601d9502ccfd1dae57 (diff) | |
download | emacs-ee2916c6d25f963649c9fe2583faf66538f60180.tar.gz |
Use “Cc” for email copies, as per RFC 5322.
Also fix similar problems with Bcc, Fcc, In-Reply-To,
and similar email headers. See thread starting at:
https://lists.gnu.org/r/emacs-devel/2018-05/msg00463.html
Diffstat (limited to 'lisp/mail/uce.el')
-rw-r--r-- | lisp/mail/uce.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/uce.el b/lisp/mail/uce.el index b948acfd522..dfe5c9c902b 100644 --- a/lisp/mail/uce.el +++ b/lisp/mail/uce.el @@ -338,7 +338,7 @@ You might need to set `uce-mail-reader' before using this." (if mail-default-headers (insert mail-default-headers)) (if mail-default-reply-to - (insert "Reply-to: " mail-default-reply-to "\n")) + (insert "Reply-To: " mail-default-reply-to "\n")) (insert mail-header-separator "\n") ;; Insert all our text. Then go back to the place where we started. (if to (setq to (point))) |