X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=faq.mdwn;h=d6112132148a0c9682c702b73c2ff4c3c9669a7b;hb=87440cbc1d12fc3a860289b11d7b850b538dcf3d;hp=c1125a57c298c39cd2acdf355c3f45bf6a83e86a;hpb=16d8af6c126b57e451b031ea9eb39e2e6f1a617c;p=notmuch-wiki diff --git a/faq.mdwn b/faq.mdwn index c1125a5..d611213 100644 --- a/faq.mdwn +++ b/faq.mdwn @@ -1,12 +1,28 @@ +[[!img notmuch-logo.png alt="Notmuch logo" class="left"]] # Frequently Asked Questions [[!toc levels=2]] ## How come this query matches mails in folder:2013? `notmuch search --output=files folder:inbox` -You have duplicates of the message in both folders. +You have duplicates of a message (or messages) in both folders. Notmuch searches are message based. Multiple files may be associated with the same message (i.e. the files have identical Message-ID). A -folder: search will match the folder of any of the files. The ---output=files option outputs all the files of all matching messages. +`folder:` search will match the folder of any of the files. The +`--output=files` option outputs all the files of all matching messages. + +## Shouldn't notmuch support inline PGP? + +[Why it might not be a good idea](https://dkg.fifthhorseman.net/notes/inline-pgp-harmful/) + +## How do I delete messages + +See [[excluding]]. + +## How do I configure the citation line when replying in Emacs? + + (setq message-citation-line-format "On %a, %d %b %Y, %f wrote:") + (setq message-citation-line-function 'message-insert-formatted-citation-line) + +See help for `message-citation-line-format` for details.