]> git.cworth.org Git - notmuch-wiki/blob - faq.mdwn
new file: news/release-0.21.mdwn
[notmuch-wiki] / faq.mdwn
1 [[!img notmuch-logo.png alt="Notmuch logo" class="left"]]
2 # Frequently Asked Questions
3
4 [[!toc levels=2]]
5
6 ## How come this query matches mails in folder:2013? `notmuch search --output=files folder:inbox`
7
8 You have duplicates of a message (or messages) in both folders.
9
10 Notmuch searches are message based. Multiple files may be associated
11 with the same message (i.e. the files have identical Message-ID). A
12 `folder:` search will match the folder of any of the files. The
13 `--output=files` option outputs all the files of all matching messages.
14
15 ## Shouldn't notmuch support inline PGP?
16
17 [Why it might not be a good idea](https://dkg.fifthhorseman.net/notes/inline-pgp-harmful/)
18
19 ## How do I delete messages
20
21 See [[excluding]].
22
23 ## How do I configure the citation line when replying in Emacs?
24
25         (setq message-citation-line-format "On %a, %d %b %Y, %f wrote:")
26         (setq message-citation-line-function 'message-insert-formatted-citation-line)
27
28 See help for `message-citation-line-format` for details.