update docs

This commit is contained in:
Dirk-Jan C. Binnema
2025-02-07 23:43:06 +02:00
parent 8372be17dd
commit cd3cb64893
3 changed files with 46 additions and 12 deletions

View File

@ -32,11 +32,6 @@ future.
** mu4e ** mu4e
- Support automatic handling for List-Unsubscribe headers and more in general,
handle mailing-list commands https://github.com/djcb/mu/issues/2623 and
https://github.com/djcb/mu/issues/2724 This seems useful, but probably
requires a lot of testing to get right. Can we re-use the Gnus code for this?
- Allow for *muting* messages https://github.com/djcb/mu/issues/636 Useful; - Allow for *muting* messages https://github.com/djcb/mu/issues/636 Useful;
probably need to do this by *remembering* the thread-id of muted messages; and probably need to do this by *remembering* the thread-id of muted messages; and
management (unmute etc.). Perhaps at the mu side, a list of thread-id to add management (unmute etc.). Perhaps at the mu side, a list of thread-id to add
@ -61,12 +56,12 @@ future.
invisible unicode to fool crm-separator? invisible unicode to fool crm-separator?
https://github.com/djcb/mu/issues/2768 https://github.com/djcb/mu/issues/2768
- Org-link type for any message matching some reference - Org-link type for any message matching some reference See:
See: https://github.com/djcb/mu/issues/2787. https://github.com/djcb/mu/issues/2787. Some first steps implemented
Some first steps implemented (searching for references). (searching for references).
- Reply/forward/... to multiple messages at once. This is sometimes useful, and - Reply/forward/... to multiple messages at once. This is sometimes useful, and
Gnus supports. Does not seem trivial to re-use the Gnus code... (see Gnus supports it. Does not seem trivial to re-use the Gnus code... (see
~gnus-summary-work-articles~ etc.). ~gnus-summary-work-articles~ etc.).
https://github.com/djcb/mu/issues/2799 https://github.com/djcb/mu/issues/2799
@ -78,3 +73,12 @@ future.
- Support mu4e-mark-handle-when also for when leaving emacs - Support mu4e-mark-handle-when also for when leaving emacs
(kill-emacs-query-functions). (kill-emacs-query-functions).
https://github.com/djcb/mu/issues/2649 https://github.com/djcb/mu/issues/2649
- Support automatic handling for List-Unsubscribe headers and more in general,
handle mailing-list commands https://github.com/djcb/mu/issues/2623 and
https://github.com/djcb/mu/issues/2724 This seems useful, but probably
requires a lot of testing to get right. Can we re-use the Gnus code for this?
Yes: this is implemented now, in 1.12.9. Various Gnus' mailing list commands
are now available in the mu4e message view as well, such as
~gnus-mailing-list-subscribe~, ~gnus-mailing-list-unsubscribe~.

View File

@ -67,9 +67,23 @@
result you expected. result you expected.
- When you ask for bookmarks or maildirs through ~mu4e-ask-bookmark~ or - When you ask for bookmarks or maildirs through ~mu4e-ask-bookmark~ or
~mu4e-ask-maildir~, unread counts are displayed in the (default) completions UI ~mu4e-ask-maildir~, unread counts are displayed in the (default) completions
next to the maildir or bookmark. If you don't want to see these counts, set UI next to the maildir or bookmark. If you don't want to see these counts,
~mu4e-hide-short-counts~ to non-~nil~. set ~mu4e-hide-short-counts~ to non-~nil~.
- A (experimental) "transient" menu has been added for mu4e. You can use
it e.g., with something like:
#+begin_src elisp
(require 'mu4e-transient)
(global-set-key (kbd "C-c m") #'mu4e-transient-menu)
#+end_src
This is will change/improve, but is already quite useful.
- Various Gnus' mailing list commands are now available in the mu4e message
view as well, such as ~gnus-mailing-list-subscribe~,
~gnus-mailing-list-unsubscribe~.
* 1.12 (released on February 24, 2024) * 1.12 (released on February 24, 2024)

View File

@ -1319,6 +1319,7 @@ from @t{gnus-article-mode}.
* Custom headers: MSGV Custom headers. Your very own headers * Custom headers: MSGV Custom headers. Your very own headers
* Actions: MSGV Actions. Defining and using actions * Actions: MSGV Actions. Defining and using actions
* Detaching & reattaching: MSGV Detaching and reattaching. Multiple message views. * Detaching & reattaching: MSGV Detaching and reattaching. Multiple message views.
* Mailing lists: MSGV Mailing lists. Subscribing and unsubscribing.
@end menu @end menu
@node MSGV Overview @node MSGV Overview
@ -1639,6 +1640,21 @@ You can @emph{tear off} the window a message is in and place it in a
new frame by typing @key{C-x w ^ f}. You can also detach a window and new frame by typing @key{C-x w ^ f}. You can also detach a window and
put it in its own tab with @key{C-x w ^ t}. put it in its own tab with @key{C-x w ^ t}.
@node MSGV Mailing lists
@section Mailing lists
In the message view (but not the headers vies), @t{mu4e} supports various
commands for dealing with mailing-lists, such as subscribing and unsubscribing.
@itemize
@item @code{gnus-mailing-list-subscribe}: subscribe to mailing-list
@item @code{gnus-mailing-list-unsubscribe}: unsubscribe from mailing-list
@item @code{gnus-mailing-list-help}: request help for mailing-list
@end itemize
These commands depend on the current message to contain the necessary
information for these commands.
@node Composer @node Composer
@chapter Composer @chapter Composer