From c403f0a9c0206f012fd67c448ae9f6003c2c03cf Mon Sep 17 00:00:00 2001 From: djcb Date: Tue, 31 Jul 2012 18:51:46 +0300 Subject: [PATCH] * mu4e.texi: add some FAQ --- mu4e/mu4e.texi | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/mu4e/mu4e.texi b/mu4e/mu4e.texi index c273b78a..93db8b19 100644 --- a/mu4e/mu4e.texi +++ b/mu4e/mu4e.texi @@ -2131,7 +2131,8 @@ something like: "\n")))) @end lisp @item @emph{And what about customizable folders for sent messages, based on - the @t{From:} header?} This is currently not possible either, but you can periodically move messages from the main sent-folder to the specific + the @t{From:} header?} This is currently not possible either, but you can +periodically move messages from the main sent-folder to the specific sent-folders. You can easily find those messages with a query like @t{maildir:/sent from:myaddress@@example.com}. @item @emph{mu4e seems to return a mere subset of all matches - how can I get @@ -2141,6 +2142,16 @@ value of the variable @code{m4ue-search-result-limit} matches. To show @emph{all} results, use @t{M-x mu4e-headers-toggle-full-search}, or customize the variable @code{mu4e-headers-full-search}. This applies to all search commands. +@item @emph{How can I automatically add some header to an outgoing message?} +You can use @code{mu4e-compose-mode-hook}. For example, to add a Bcc:-header, +you could add something like the following to your configuration: + +@lisp +(add-hook 'mu4e-compose-mode-hook + (defun add-bcc () + (message-add-header "Bcc: me@@example.com\n"))) +@end lisp + @item @emph{How can I show attached images in my message view buffers?} See @ref{Viewing images inline}. @item @emph{How can I easily include attachments in the messages I write?}