* mu4e: advertise guile support
This commit is contained in:
@ -1292,6 +1292,9 @@ cmd_ping (ServerContext *ctx, GSList *args, GError **err)
|
|||||||
#ifdef BUILD_CRYPTO
|
#ifdef BUILD_CRYPTO
|
||||||
" :crypto t "
|
" :crypto t "
|
||||||
#endif /*BUILD_CRYPTO*/
|
#endif /*BUILD_CRYPTO*/
|
||||||
|
#ifdef BUILD_GUILE
|
||||||
|
" :guile t "
|
||||||
|
#endif /*BUILD_GUILE*/
|
||||||
" :version \"" VERSION "\" "
|
" :version \"" VERSION "\" "
|
||||||
" :doccount %u))",doccount);
|
" :doccount %u))",doccount);
|
||||||
|
|
||||||
|
|||||||
@ -103,11 +103,13 @@ clicked."
|
|||||||
(propertize mu4e-mu-version 'face 'mu4e-view-header-key-face)
|
(propertize mu4e-mu-version 'face 'mu4e-view-header-key-face)
|
||||||
|
|
||||||
;; show some server properties; in this case; a big C when there's
|
;; show some server properties; in this case; a big C when there's
|
||||||
;; crypto support
|
;; crypto support, a big G when there's Guile support
|
||||||
" "
|
" "
|
||||||
(if (plist-get mu4e~server-props :crypto)
|
(propertize
|
||||||
(propertize "C" 'face 'mu4e-title-face)
|
(concat
|
||||||
"")
|
(when (plist-get mu4e~server-props :crypto) "C")
|
||||||
|
(when (plist-get mu4e~server-props :guile) "G"))
|
||||||
|
'face 'mu4e-title-face)
|
||||||
"\n\n"
|
"\n\n"
|
||||||
(propertize " Basics\n\n" 'face 'mu4e-title-face)
|
(propertize " Basics\n\n" 'face 'mu4e-title-face)
|
||||||
(mu4e~main-action-str "\t* [j]ump to some maildir\n" 'mu4e-jump-to-maildir)
|
(mu4e~main-action-str "\t* [j]ump to some maildir\n" 'mu4e-jump-to-maildir)
|
||||||
|
|||||||
@ -574,7 +574,7 @@ The main view looks something like the following:
|
|||||||
|
|
||||||
@cartouche
|
@cartouche
|
||||||
@verbatim
|
@verbatim
|
||||||
* mu4e - mu for emacs version x.x C
|
* mu4e - mu for emacs version x.x CG
|
||||||
|
|
||||||
Basics
|
Basics
|
||||||
|
|
||||||
@ -601,12 +601,16 @@ The main view looks something like the following:
|
|||||||
@end verbatim
|
@end verbatim
|
||||||
@end cartouche
|
@end cartouche
|
||||||
|
|
||||||
If you see a @t{C} at the right-hand side of @t{version x.x}, your @t{mu4e}
|
In the example above, you can see the letters ``@t{CG}'', which indicate:
|
||||||
has support for decryption of encrypted messages, and verifying
|
@itemize
|
||||||
signatures. See @ref{Decryption} and @ref{Verifying signatures} in the
|
@item @t{C}: support for decryption of encrypted messages, and verifying
|
||||||
@ref{Message view}.
|
signatures. See @ref{MSGV Crypto} in the @ref{Message view} for details.
|
||||||
|
@item @t{G}: support for the Guile 2.0 programming language
|
||||||
|
@end itemize
|
||||||
|
Whether you see both, one or none of these letters depends on the way @t{mu}
|
||||||
|
is built.
|
||||||
|
|
||||||
Now, let's go through menu items, assuming the default key bindings.
|
Let's walk through the menu.
|
||||||
|
|
||||||
@node Basic actions
|
@node Basic actions
|
||||||
@section Basic actions
|
@section Basic actions
|
||||||
|
|||||||
Reference in New Issue
Block a user