mu4e: update documentation
This commit is contained in:
@ -789,7 +789,8 @@ of message."
|
|||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun mu4e-compose-reply (&optional wide)
|
(defun mu4e-compose-reply (&optional wide)
|
||||||
"Reply to the message at point.
|
"Reply to the message at point.
|
||||||
If WIDE is non-nil, make it a \"wide\" reply (\"reply-to-all\")."
|
If WIDE is non-nil, make it a \"wide\" reply (a.k.a.
|
||||||
|
\"reply-to-all\")."
|
||||||
(interactive)
|
(interactive)
|
||||||
(mu4e--compose-setup
|
(mu4e--compose-setup
|
||||||
'reply
|
'reply
|
||||||
@ -801,13 +802,17 @@ If WIDE is non-nil, make it a \"wide\" reply (\"reply-to-all\")."
|
|||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun mu4e-compose-wide-reply ()
|
(defun mu4e-compose-wide-reply ()
|
||||||
"Reply to the message at point to all recipients."
|
"Wide-reply to the message at point.
|
||||||
|
A.k.a., \"reply-to-all\"."
|
||||||
(interactive) (mu4e-compose-reply 'wide))
|
(interactive) (mu4e-compose-reply 'wide))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun mu4e-compose-supersede ()
|
(defun mu4e-compose-supersede ()
|
||||||
"Supersede message at point.
|
"Supersede message at point.
|
||||||
Message must be from current user, as determined through
|
|
||||||
|
That is, send the message again, with all the same recipients;
|
||||||
|
this can be useful to follow-up on a sent message. The message
|
||||||
|
must be from current user, as determined through
|
||||||
`mu4e-personal-or-alternative-address-p'."
|
`mu4e-personal-or-alternative-address-p'."
|
||||||
(interactive)
|
(interactive)
|
||||||
(mu4e--compose-setup
|
(mu4e--compose-setup
|
||||||
@ -858,7 +863,8 @@ Message must be from current user, as determined through
|
|||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun mu4e-compose-resend (address)
|
(defun mu4e-compose-resend (address)
|
||||||
"Re-send the message at point."
|
"Re-send the message at point.
|
||||||
|
The message is resent as-is, without any editing. "
|
||||||
(interactive
|
(interactive
|
||||||
(list (completing-read
|
(list (completing-read
|
||||||
"Resend message to address: " mu4e--contacts-set)))
|
"Resend message to address: " mu4e--contacts-set)))
|
||||||
|
|||||||
@ -1683,11 +1683,12 @@ To influence the way a message is forwarded, you can use the variables
|
|||||||
|
|
||||||
@subsection Supersede
|
@subsection Supersede
|
||||||
|
|
||||||
Occasionally, it can be useful to ``supersede'' a message you sent; this is
|
Occasionally, it can be useful to ``supersede'' a message you sent; this drops
|
||||||
somewhat like a wide-reply, but with the all the same recipients as the original
|
you into a new message that is just like the old message (and a @t{Supersedes:}
|
||||||
message, as determined by @code{mu4e-personal-or-alternative-address-p}.
|
message header). You can then edit this message and send it.
|
||||||
|
|
||||||
For this, there @t{mu4e-compose-supersede} (no default keybinding).
|
This is only possible for messages @emph{you} sent, as determined by
|
||||||
|
@code{mu4e-personal-or-alternative-address-p}.
|
||||||
|
|
||||||
This wraps @code{message-supersede}.
|
This wraps @code{message-supersede}.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user