]> git.cworth.org Git - notmuch-wiki/blob - emacstips.mdwn
emacstips: update tagging lisp snippets
[notmuch-wiki] / emacstips.mdwn
1 [[!img notmuch-logo.png alt="Notmuch logo" class="left"]]
2 # Tips and Tricks for using notmuch with Emacs
3
4 One of the more popular notmuch message reading clients is
5 **notmuch.el**, an [emacs](http://www.gnu.org/software/emacs/) major
6 mode for interacting with notmuch.  It is included in the notmuch
7 package (notmuch-emacs in Debian).  This page goes over some usage
8 tips for using notmuch with Emacs.
9
10 [[!toc levels=2]]
11
12 ## Setup
13
14 Have a look at the [Howto](http://notmuchmail.org/howto/) for
15 prerequisites.  Be sure you have done the general setup using the
16 notmuch cli command!
17
18 To use the Notmuch emacs mode, first add the following line to your
19 `.emacs` rc file:
20
21         (require 'notmuch)
22
23 or you can load the package via autoload:
24
25         (autoload 'notmuch "notmuch" "notmuch mail" t)
26
27 Then, either run "emacs -f notmuch", or execute the command `M-x
28 notmuch` from within a running emacs.
29
30 ## Navigating & reading mails
31
32 When first starting notmuch in emacs, you will be presented with the
33 notmuch "hello" page.  If it exits with an error after writing
34 "Welcome to notmutch. You have" you need to do the basic notmuch setup
35 first (see above).
36 From here you can do searches, see lists of recent
37 searches, saved searches, message tags, help information, etc.
38
39 Executing a search will open a new buffer in `notmuch-search-mode`
40 displaying the search results.  Each line in the search results
41 represents a message thread.  Hitting the '?' key will show help for
42 this mode.
43
44 In general, the 'q' will kill the current notmuch buffer and return
45 you to the previous buffer (sort of like a 'pop').
46
47 In search mode, navigating to a thread and hitting return will then
48 open a new buffer in `notmuch-show-mode`, which will show the actual
49 message contents of the thread.
50
51 ## Sending mail
52
53 In any notmuch mode, you can start a new message by hitting the 'm'
54 key.  To reply to a message or thread, just hit the 'r' key.
55
56 When composing new messages, you will be entered in emacs's
57 `message-mode`, which is a powerful mode for composing and sending
58 messages.  When in message mode, you can type `C-c ?` for help.
59
60 If you would like to use address autocompletion when composing
61 messages, see [address completion](#address_completion).
62
63 When you are ready to send a message, type `C-c C-c`. By default
64 message mode will use your sendmail command to send mail, so make sure
65 that works. One annoying standard configuration of message mode is
66 that it will hide the sent mail in your emacs frame stack, but it will
67 not close it. If you type several mails in an emacs session they will
68 accumulate and make switching between buffers more annoying. You can
69 avoid that behavior by adding `(setq message-kill-buffer-on-exit t)`
70 in your `.emacs` file (or doing `M-x
71 customize-variable<RET>message-kill-buffer-on-exit<RET>`) which will
72 really close the mail window after sending it.
73
74 ## Attaching files
75
76 Using the `M-x mml-attach-file` command, you can attach any file to be
77 sent with your mail. By default this command is bound to the menu item
78 *Attachments--Attach File* with the key binding `C-c C-a`. The
79 variable `mml-dnd-attach-options` (`M-x
80 customize-variable<RET>mml-dnd-attach-options<RET>`) can be set to
81 allow the prompting for various attachment options (such as
82 inline/attachment) if you want to do that.
83
84 For those who prefer a more graphical interface, you can also simply
85 drag and drop files from a file manager into a mail composition window
86 to have them attached. In Ubuntu this works without any modifications
87 if files are dragged from the file manager.
88
89 And for those who prefer working from command line, the following
90 script opens new emacs window with empty message and attaches files
91 mentioned as script arguments. (Note: The script expects that you have
92 `(server-start)` in your `.emacs` file.)
93
94         #!/bin/sh
95         attach_cmds=""
96         while [ "$1" ]; do
97             fullpath=$(readlink --canonicalize "$1")
98             attach_cmds="$attach_cmds (mml-attach-file \"$fullpath\")"
99             shift
100         done
101         emacsclient -a '' -c -e "(progn (compose-mail) $attach_cmds)"
102
103 ## Issues with Emacs 24
104
105 If notmuch-show-mode behaves badly for you in emacs 24.x try adding one of
106
107         (setq gnus-inhibit-images nil)
108
109 or
110
111         (require 'gnus-art)
112
113 to your .emacs file.
114
115 -----
116
117 # Advanced tips and tweaks
118
119 ## Use separate emacs lisp file for notmuch configuration
120
121 Instead of adding notmuch configuration code to `.emacs`, there
122 is an option to collect those to a separate file (which is only
123 loaded when `notmuch` is invoked). To do this, write, for example
124 a file called `~/.emacs.d/my-notmuch.el`:
125
126         ;;; my-notmuch.el -- my notmuch mail configuration
127         ;;;
128
129         ;;; add here stuff required to be configured *before*
130         ;;; notmuch is loaded;
131
132         ;; uncomment and modify in case some elisp files are not found in load-path
133         ;; (add-to-list 'load-path "~/vc/ext/notmuch/emacs")
134
135         ;;; load notmuch
136         (require 'notmuch)
137
138         ;;; add here stuff required to be configured *after*
139         ;;; notmuch is loaded;
140
141         ;; uncomment & modify if you want to use external smtp server to send mail
142         ;; (setq smtpmail-smtp-server "smtp.server.tld"
143         ;;       message-send-mail-function 'message-smtpmail-send-it)
144         ;; uncomment to debug smtp sending problems
145         ;; (setq smtpmail-debug-info t)
146
147 Then, add to `.emacs`:
148
149         (autoload 'notmuch "~/.emacs.d/my-notmuch" "notmuch mail" t)
150
151 ## Initial cursor position in notmuch 0.15 hello window
152
153 In notmuch version 0.15 emacs client the handling of cursor position in
154 notmuch hello window has been simplified to a version which suits best
155 most cases.
156
157 Initially the cursor is positioned at the beginning of buffer.
158
159 Some users liked the "ancient" version where cursor was moved to the
160 first `Saved searches` button.
161
162 Add the following code to your notmuch emacs configuration file in
163 case you want this behaviour:
164
165         (add-hook 'notmuch-hello-refresh-hook
166                   (lambda ()
167                     (if (and (eq (point) (point-min))
168                              (search-forward "Saved searches:" nil t))
169                         (progn
170                           (forward-line)
171                           (widget-forward 1))
172                       (if (eq (widget-type (widget-at)) 'editable-field)
173                           (beginning-of-line)))))
174
175 ## Add a key binding to add/remove/toggle a tag
176
177 The `notmuch-{search,show,tree}-tag` functions are very useful for
178 making quick tag key bindings.  The arguments to these functions have
179 changed as notmuch has evolved but the following should work on all
180 versions of notmuch 0.13 and later.  These functions take a list of
181 tag changes as argument. For example, an argument of (list "+spam"
182 "-inbox) adds the tag spam and deletes the tag inbox. Note the
183 argument must be a list even if there is only a single tag change
184 e.g., use (list "+deleted") to add the deleted tag.
185
186 For instance, here's an example of how to make a key binding to add
187 the "spam" tag and remove the "inbox" tag in notmuch-show-mode:
188
189         (define-key notmuch-show-mode-map "S"
190           (lambda ()
191             "mark message as spam"
192             (interactive)
193             (notmuch-show-tag (list "+spam" "-inbox"))))
194
195 You can do the same for threads in `notmuch-search-mode` by just
196 replacing "show" with "search" in the keymap and called functions, or
197 for messages in `notmuch-tree-mode` by replacing "show" by "tree". If
198 you want to tag a whole thread in `notmuch-tree-mode` use
199 `notmuch-tree-tag-thread` instead of `notmuch-tree-tag`.
200
201 The definitions above make use of a lambda function, but you could
202 also define a separate function first:
203
204         (defun notmuch-show-tag-spam ()
205           "mark message as spam"
206           (interactive)
207           (notmuch-show-add-tag (list "+spam" "-inbox")))
208
209         (define-key notmuch-show-mode-map "S" 'notmuch-show-tag-spam)
210
211 Here's a more complicated example of how to add a toggle "deleted"
212 key:
213
214         (define-key notmuch-show-mode-map "d"
215           (lambda ()
216             "toggle deleted tag for message"
217             (interactive)
218             (if (member "deleted" (notmuch-show-get-tags))
219                 (notmuch-show-tag (list "-deleted"))
220               (notmuch-show-tag (list "+deleted")))))
221
222 ## Adding many tagging keybindings
223
224 If you want to have have many tagging keybindings, you can save the typing
225 the few lines of  boilerplate for every binding (for versions before 0.12,
226 you will need to change notmuch-show-apply-tag-macro).
227
228     (eval-after-load 'notmuch-show
229       '(define-key notmuch-show-mode-map "`" 'notmuch-show-apply-tag-macro))
230
231     (setq notmuch-show-tag-macro-alist
232       (list
233        '("m" "+notmuch::patch" "+notmuch::moreinfo" "-notmuch::needs-review")
234        '("n" "+notmuch::patch" "+notmuch::needs-review" "-notmuch::pushed")
235        '("o" "+notmuch::patch" "+notmuch::obsolete"
236              "-notmuch::needs-review" "-notmuch::moreinfo")
237        '("p" "-notmuch::pushed" "-notmuch::needs-review"
238          "-notmuch::moreinfo" "+pending")
239        '("P" "-pending" "-notmuch::needs-review" "-notmuch::moreinfo" "+notmuch::pushed")
240        '("r" "-notmuch::patch" "+notmuch::review")
241        '("s" "+notmuch::patch" "-notmuch::obsolete" "-notmuch::needs-review" "-notmuch::moreinfo" "+notmuch::stale")
242        '("t" "+notmuch::patch" "-notmuch::needs-review" "+notmuch::trivial")
243        '("w" "+notmuch::patch" "+notmuch::wip" "-notmuch::needs-review")))
244
245     (defun notmuch-show-apply-tag-macro (key)
246       (interactive "k")
247       (let ((macro (assoc key notmuch-show-tag-macro-alist)))
248         (apply 'notmuch-show-tag-message (cdr macro))))
249
250 ## Restore reply-to-all key binding to 'r'
251
252 Starting from notmuch 0.12 the 'r' key is bound to reply-to-sender instead of
253 reply-to-all. Here's how to swap the reply to sender/all bindings in show mode:
254
255         (define-key notmuch-show-mode-map "r" 'notmuch-show-reply)
256         (define-key notmuch-show-mode-map "R" 'notmuch-show-reply-sender)
257
258 And in search mode:
259
260         (define-key notmuch-search-mode-map "r" 'notmuch-search-reply-to-thread)
261         (define-key notmuch-search-mode-map "R" 'notmuch-search-reply-to-thread-sender)
262
263
264 ## How to do FCC/BCC...
265
266 The Emacs interface to notmuch will automatically add an `Fcc`
267 header to your outgoing mail so that any messages you send will also
268 be saved in your mail store. You can control where this copy of the
269 message is saved by setting the variable `notmuch-fcc-dirs` which defines the
270 subdirectory relative to the `database.path` setting from your
271 notmuch configuration in which to save the mail. Enter a directory
272 (without the maildir `/cur` ending which will be appended
273 automatically). Additional information can be found as usual using:
274
275        M-x describe-variable notmuch-fcc-dirs
276
277 An additional variable that can affect FCC settings in some cases is
278 `message-directory`. Emacs message-mode uses this variable for
279 postponed messages.
280
281 To customize both variables at the same time, use the fancy command:
282
283         M-x customize-apropos<RET>\(notmuch-fcc-dirs\)\|\(message-directory\)
284
285 This mechanism also allows you to select different folders to be
286 used for the outgoing mail depending on your selected `From`
287 address. Please see the documentation for the variable
288 `notmuch-fcc-dirs` in the customization window for how to arrange
289 this.
290
291 ## How to customize `notmuch-saved-searches`
292
293 When starting notmuch, a list of saved searches and message counts is
294 displayed, replacing the older `notmuch-folders` command. The set of
295 saved searches displayed can be modified directly from the notmuch
296 interface (using the `[save]` button next to a previous search) or by
297 customising the variable `notmuch-saved-searches`.
298
299 An example setting for notmuch versions up to 0.17.x might be:
300
301         (setq notmuch-saved-searches '(("inbox" . "tag:inbox")
302                         ("unread" . "tag:inbox AND tag:unread")
303                         ("notmuch" . "tag:inbox AND to:notmuchmail.org")))
304
305 Starting from notmuch 0.18 the variable changed. It is backwards
306 compatible so the above will still work but the new style will be used
307 if you use customize and there are some new features available. The above would become
308
309         (setq notmuch-saved-searches '((:name "inbox" :query "tag:inbox")
310                         (:name "unread" :query "tag:inbox AND tag:unread")
311                         (:name "notmuch" :query "tag:inbox AND to:notmuchmail.org")))
312
313 The additional features are the possibility to set the search order
314 for the search, and the possibility to specify a different query for
315 displaying the count for the saved-search. For example
316
317         (setq notmuch-saved-searches '((:name "inbox"
318                                         :query "tag:inbox"
319                                         :count-query "tag:inbox and tag:unread"
320                                         :sort-order 'oldest-first)))
321
322 specifies a single saved search for inbox, but the number displayed by
323 the search will be the number of unread messages in the inbox, and the
324 sort order for this search will be oldest-first.
325
326 Of course, you can have any number of saved searches, each configured
327 with any supported search terms (see "notmuch help search-terms"), and
328 in the new style variable they can each have different count-queries
329 and sort orders.
330
331 Some users find it useful to add `and not tag:delete` to those
332 searches, as they use the `delete` tag to mark messages as
333 deleted. This causes messages that are marked as deleted to be removed
334 from the commonly used views of messages.  Use whatever seems most
335 useful to you.
336
337 ## Viewing HTML messages with an external viewer
338
339 The emacs client can display an HTML message inline using either the
340 `html2text` library or some text browser, like w3m or lynx. This is
341 controlled by the `mm-text-html-renderer` variable.
342
343 The first option is theorically better, because it can generate
344 strings formatted for emacs and do whatever you want, e.g., substitute
345 text inside &lt;b&gt; tags for bold text in the buffer. The library, however
346 is still in a very early development phase and cannot yet process
347 properly many elements, like tables and <style> directives, and even
348 the generated text is often poorly formatted.
349
350 Among the available browsers, w3m seems to do a better job converting
351 the html, and if you have the w3m emacs package, you can use it,
352 instead of the w3m-standalone, and thus preserve the text formatting.
353
354 But if the rendering fails for one reason or another, or if you really
355 need to see the graphical presentation of the HTML message, it can be
356 useful to display the message in an external viewer, such as a web
357 browser. Here's a little script that Keith Packard wrote, which he
358 calls `view-html`:
359
360         #!/bin/sh
361         dir=`mktemp -d`
362         trap "rm -r $dir" 0
363         cat "$@" > "$dir"/msg
364         if munpack -C "$dir" -t < "$dir"/msg 2>&1 | grep 'Did not find'; then
365             sed -n '/[Hh][Tt][Mm][Ll]/,$p' "$dir"/msg > $dir/part1.html
366             rm "$dir"/msg
367         fi
368         for i in "$dir"/part*; do
369             if grep -q -i -e '<html>' -e 'text/html' "$i"; then
370                 iceweasel "$i" &
371                 sleep 3
372                 exit 0
373             fi
374         done
375
376 Save that script somewhere in your `${PATH}`, make it executable,
377 and change the invocation of `iceweasel` to any other HTML viewer if
378 necessary. Then within the emacs client, press '|' to pipe the
379 current message, then type "view-html".
380
381 Keith mentions the following caveat, "Note that if iceweasel isn't
382 already running, it seems to shut down when the script exits. I
383 don't know why."
384
385 ## msmtp, message mode and multiple accounts
386
387 As an alternative to running a mail server such as sendmail or postfix
388 just to send email, it is possible to use
389 [msmtp](http://msmtp.sourceforge.net/). This small application will
390 look like `/usr/bin/sendmail` to a MUA such as emacs message mode, but
391 will just forward the email to an external SMTP server. It's fairly
392 easy to set up and it supports several accounts for using different
393 SMTP servers. The msmtp pages have several examples.
394
395 A typical scenario is that you want to use the company SMTP server
396 for email coming from your company email address, and your personal
397 server for personal email.  If msmtp is passed the envelope address
398 on the command line (the -f/--from option) it will automatically
399 pick the matching account.  The only trick here seems to be getting
400 emacs to actually pass the envelope from.  There are a number of
401 overlapping configuration variables that control this, and it's a
402 little confusion, but setting these three works for me:
403
404  - `mail-specify-envelope-from`: `t`
405
406  - `message-sendmail-envelope-from`: `header`
407
408  - `mail-envelope-from`: `header`
409
410 With that in place, you need a `.msmtprc` with the accounts configured
411 for the domains you want to send out using specific SMTP servers and
412 the rest will go to the default account.
413
414 If you have a hard time getting the above to work for you, as I did,
415 it's also possible to add a message-send-mail-hook in your .emacs to
416 send the from header explicitly as an argument to msmtp as described
417 [here](http://www.emacswiki.org/cgi-bin/wiki/GnusMSMTP#toc2) on the
418 emacswiki.
419
420
421 ## <span id="address_completion">Address completion when composing</span>
422
423 There are currently three solutions to this:
424
425 ### bbdb
426
427 [bbdb](http://bbdb.sourceforge.net) is a contact database for emacs
428 that works quite nicely together with message mode, including
429 address autocompletion.
430
431 ### notmuch database as an address book
432
433 You can also use the notmuch database as a mail address book itself.
434 To do this you need a command line tool that outputs likely address
435 candidates based on a search string.  There are currently four
436 available:
437
438   * The python tool `notmuch_address.py` (`git clone
439     http://commonmeasure.org/~jkr/git/notmuch_addresses.git`) (slower, but
440     no compilation required so good for testing the setup)
441
442   * The vala-based
443     [addrlookup](http://github.com/spaetz/vala-notmuch) (faster, but
444     needs compiling).  The addrlookup binary needs to be compiled.
445     Grab
446     `http://github.com/spaetz/vala-notmuch/raw/static-sources/src/addrlookup.c`
447     and build it with:
448
449             cc -o addrlookup addrlookup.c `pkg-config --cflags --libs gobject-2.0` -lnotmuch
450
451   * Shell/fgrep/perl combination [nottoomuch-addresses.sh](https://github.com/domo141/nottoomuch/blob/master/nottoomuch-addresses.rst).
452     This tools maintains it's own address "database" gathered from email
453     files notmuch knows and search from that "database" is done by `fgrep(1)`.
454
455   * python/sqlite combination [notmuch-abook](https://github.com/guyzmo/notmuch-abook/)
456     This tools also maintains an address database in sqlite after harvesting
457     from notmuch.  It also includes a vim plugin.
458
459 You can perform tab-completion using any of these programs.
460 Just add the following to your .emacs:
461
462         (require 'notmuch-address)
463         (setq notmuch-address-command "/path/to/address_fetching_program")
464         (notmuch-address-message-insinuate)
465
466 ### Google Contacts
467
468 [GooBook](http://code.google.com/p/goobook/) is a command-line tool for
469 accessing Google Contacts. Install and set it up according to its documentation.
470
471 To use GooBook with notmuch, use this wrapper script and set it up like the
472 programs above.
473
474         #!/bin/sh
475         goobook query "$*" | sed 's/\(.*\)\t\(.*\)\t.*/\2 \<\1\>/' | sed '/^$/d'
476
477 You can add the sender of a message to Google Contacts by piping the message
478 (`notmuch-show-pipe-message`) to `goobook add`.
479
480 ### Akonadi
481
482         git clone https://github.com/mmehnert/akonadimailsearch
483
484 Install the development packages for kdepim on your system.
485 Enter the cloned repository and create a build directory:
486
487         mkdir build
488         cd build
489         cmake ..; make;
490
491 You will find the akonadimailsearch binary in the build/src directory.
492 Create a ~/bin/akonadimailsearch.sh file with the following content and make it executable:
493 (Adjust the path for the akonadimailsearch binary.)
494
495         #!/bin/sh
496         akonadimailsearch "$@" 2>/dev/null
497
498 As described above, you can now add the following settings to your ~/.emacs file:
499
500         (require 'notmuch-address)
501         (setq notmuch-address-command "~/bin/akonadimailsearch.sh")
502         (notmuch-address-message-insinuate)
503
504
505
506 ## How to sign/encrypt messages with gpg
507
508 Messages can by signed using gpg by invoking
509 `M-x mml-secure-sign-pgpmime` (or `M-x mml-secure-encrypt-pgpmime`).
510 These functions are available via the standard `message-mode` keybindings
511 `C-c C-m s p` and `C-c C-m c p`. To sign outgoing mail by default, use the
512 `message-setup-hook` in your `.emacs` file:
513
514         ;; Sign messages by default.
515         (add-hook 'message-setup-hook 'mml-secure-sign-pgpmime)
516
517 This inserts the required `<#part sign=pgpmime>` into the beginning
518 of the mail text body and will be converted into a pgp signature
519 when sending (so one can just manually delete that line if signing
520 is not required).
521
522 Alternatively, you may prefer to use `mml-secure-message-sign-pgpmime` instead
523 of `mml-secure-sign-pgpmime` to sign the whole message instead of just one
524 part.
525
526 ### Troubleshooting message-mode gpg support
527
528 - If you have trouble with expired subkeys, you may have encountered
529   emacs bug #7931.  This is fixed in git commit 301ea744c on
530   2011-02-02.  Note that if you have the Debian package easypg
531   installed, it will shadow the fixed version of easypg included with
532   emacs.
533
534 ## Multiple identities using gnus-alias
535
536 [gnus-alias](http://www.emacswiki.org/emacs/GnusAlias) allows you to
537 define multiple identities when using `message-mode`. You can specify
538 the from address, organization, extra headers (including *Bcc*), extra
539 body text, and signature for each identity. Identities are chosen
540 based on a set of rules. When you are in message mode, you can switch
541 identities using gnus-alias.
542
543 ### Installation
544
545 - put `gnus-alias.el` on your load Emacs-Lisp load path (add new directory
546   to load path by writing `(add-to-list 'load-path "/some/load/path")` into
547   your `.emacs`.
548
549 - Add the following to your `.emacs`
550
551         (autoload 'gnus-alias-determine-identity "gnus-alias" "" t)
552         (add-hook 'message-setup-hook 'gnus-alias-determine-identity)
553
554 Looking into `gnus-alias.el` gives a bit more information...
555
556 ### Example Configuration
557
558 Here is an example configuration.
559
560         ;; Define two identities, "home" and "work"
561         (setq gnus-alias-identity-alist
562               '(("home"
563                  nil ;; Does not refer to any other identity
564                  "John Doe <jdoe@example.net>" ;; Sender address
565                  nil ;; No organization header
566                  nil ;; No extra headers
567                  nil ;; No extra body text
568                  "~/.signature")
569                 ("work"
570                  nil
571                  "John Doe <john.doe@example.com>"
572                  "Example Corp."
573                  (("Bcc" . "john.doe@example.com"))
574                  nil
575                  "~/.signature.work")))
576         ;; Use "home" identity by default
577         (setq gnus-alias-default-identity "home")
578         ;; Define rules to match work identity
579         (setq gnus-alias-identity-rules)
580               '(("work" ("any" "john.doe@\\(example\\.com\\|help\\.example.com\\)" both) "work"))
581         ;; Determine identity when message-mode loads
582         (add-hook 'message-setup-hook 'gnus-alias-determine-identity)
583
584 When `gnus-alias` has been loaded (using autoload, require, *M-x load-library*
585 or *M-x load-file* (load-file takes file path -- therefore it can be used
586 without any `.emacs` changes)) the following commands can be used to get(/set)
587 more information (some of these have "extensive documentation"):
588
589         M-x describe-variable RET gnus-alias-identity-alist
590         M-x describe-variable RET gnus-alias-identity-rules
591         M-x describe-variable RET gnus-alias-default-identity
592
593         M-x customize-group RET gnus-alias RET
594           or
595         M-x gnus-alias-customize RET
596
597 The last two do the same thing.
598
599 See also the **Usage:** section in `gnus-alias.el`.
600
601 ## Resending (or bouncing) messages
602
603 Add the following to your `.emacs` to be able to resend the current message in
604 show mode.
605
606         (define-key notmuch-show-mode-map "b"
607           (lambda (&optional address)
608             "Bounce the current message."
609             (interactive "sBounce To: ")
610             (notmuch-show-view-raw-message)
611             (message-resend address)))
612
613 ## `notmuch-hello` refresh status message
614
615 Add the following to your `.emacs` to get a status message about the change in
616 the number of messages in the mail store when refreshing the `notmuch-hello`
617 buffer.
618
619         (defvar notmuch-hello-refresh-count 0)
620
621         (defun notmuch-hello-refresh-status-message ()
622           (unless no-display
623             (let* ((new-count
624                     (string-to-number
625                      (car (process-lines notmuch-command "count"))))
626                    (diff-count (- new-count notmuch-hello-refresh-count)))
627               (cond
628                ((= notmuch-hello-refresh-count 0)
629                 (message "You have %s messages."
630                          (notmuch-hello-nice-number new-count)))
631                ((> diff-count 0)
632                 (message "You have %s more messages since last refresh."
633                          (notmuch-hello-nice-number diff-count)))
634                ((< diff-count 0)
635                 (message "You have %s fewer messages since last refresh."
636                          (notmuch-hello-nice-number (- diff-count)))))
637               (setq notmuch-hello-refresh-count new-count))))
638
639         (add-hook 'notmuch-hello-refresh-hook 'notmuch-hello-refresh-status-message)
640
641 ## Replacing tabs with spaces in subject and header
642
643 Mailman mailing list software rewrites and rewraps long message subjects in
644 a way that causes TABs to appear in the middle of the subject and header
645 lines. Add this to your `.emacs` to replace tabs with spaces in subject
646 lines:
647
648         (defun notmuch-show-subject-tabs-to-spaces ()
649           "Replace tabs with spaces in subject line."
650           (goto-char (point-min))
651           (when (re-search-forward "^Subject:" nil t)
652             (while (re-search-forward "\t" (line-end-position) t)
653               (replace-match " " nil nil))))
654
655         (add-hook 'notmuch-show-markup-headers-hook 'notmuch-show-subject-tabs-to-spaces)
656
657 And in header lines (this will only work with the yet to be released
658 notmuch version 0.15):
659
660         (defun notmuch-show-header-tabs-to-spaces ()
661           "Replace tabs with spaces in header line."
662           (setq header-line-format
663                 (notmuch-show-strip-re
664                  (replace-regexp-in-string "\t" " " (notmuch-show-get-subject)))))
665
666         (add-hook 'notmuch-show-hook 'notmuch-show-header-tabs-to-spaces)
667
668 ## Hiding unread messages in notmuch-show
669
670 I like to have an inbox saved search, but only show unread messages when they
671 view a thread. This takes two steps:
672
673 1. Apply
674 [this patch from Mark Walters](http://notmuchmail.org/pipermail/notmuch/2012/010817.html)
675 to add the `notmuch-show-filter-thread` function.
676 1. Add the following hook to your emacs configuration:
677
678         (defun expand-only-unread-hook () (interactive)
679           (let ((unread nil)
680                 (open (notmuch-show-get-message-ids-for-open-messages)))
681             (notmuch-show-mapc (lambda ()
682                                  (when (member "unread" (notmuch-show-get-tags))
683                                    (setq unread t))))
684             (when unread
685               (let ((notmuch-show-hook (remove 'expand-only-unread-hook notmuch-show-hook)))
686                 (notmuch-show-filter-thread "tag:unread")))))
687
688         (add-hook 'notmuch-show-hook 'expand-only-unread-hook)
689
690 ## Changing the color of a saved search based on some other search
691
692 I like to have a saved search for my inbox, but have it change color when there
693 are thread with unread messages in the inbox. I accomplish this with the
694 following code in my emacs config:
695
696         (defun color-inbox-if-unread () (interactive)
697           (save-excursion
698             (goto-char (point-min))
699             (let ((cnt (car (process-lines "notmuch" "count" "tag:inbox and tag:unread"))))
700               (when (> (string-to-number cnt) 0)
701                 (save-excursion
702                   (when (search-forward "inbox" (point-max) t)
703                     (let* ((overlays (overlays-in (match-beginning 0) (match-end 0)))
704                            (overlay (car overlays)))
705                       (when overlay
706                         (overlay-put overlay 'face '((:inherit bold) (:foreground "green")))))))))))
707         (add-hook 'notmuch-hello-refresh-hook 'color-inbox-if-unread)
708
709 ## Linking to notmuch messages and threads from the Circe IRC client
710
711 [Circe](https://github.com/jorgenschaefer/circe/wiki) is an IRC client for emacs.
712 To have clickable buttons for notmuch messages and threads, add the following to
713 `lui-buttons-list` (using, e.g. M-x customize-variable)
714
715     ("\\(?:id\\|mid\\|thread\\):[0-9A-Za-z][0-9A-Za-z.@-]*" 0 notmuch-show 0)
716
717 If you have notmuch-pick installed, it works fine for this as well.
718
719 ## Linking to notmuch messages from org-mode
720
721 Support for linking to notmuch messages is distributed with org-mode,
722 but as a contrib file, so you might have to work a bit to load it.
723
724 In Debian and derivatives,
725
726         (add-to-list 'load-path "/usr/share/org-mode/lisp")
727
728 Then
729
730         (require 'org-notmuch)
731
732 In general it is nice to have a key for org-links (not just for notmuch). For example
733
734     (define-key global-map "\C-cl" 'org-store-link)
735
736 ## Viewing diffs in notmuch
737
738 The following code allows you to view an inline patch in diff-mode
739 directly from notmuch. This means that normal diff-mode commands like
740 refine, next hunk etc all work.
741
742     (defun my-notmuch-show-view-as-patch ()
743       "View the the current message as a patch."
744       (interactive)
745       (let* ((id (notmuch-show-get-message-id))
746              (subject (concat "Subject: " (notmuch-show-get-subject) "\n"))
747              (diff-default-read-only t)
748              (buf (get-buffer-create (concat "*notmuch-patch-" id "*")))
749              (map (make-sparse-keymap)))
750         (define-key map "q" 'notmuch-kill-this-buffer)
751         (switch-to-buffer buf)
752         (let ((inhibit-read-only t))
753           (erase-buffer)
754           (insert subject)
755           (insert (notmuch-get-bodypart-internal id 1 nil)))
756         (set-buffer-modified-p nil)
757         (diff-mode)
758         (lexical-let ((new-ro-bind (cons 'buffer-read-only map)))
759                      (add-to-list 'minor-mode-overriding-map-alist new-ro-bind))
760         (goto-char (point-min))))
761
762 and then this function needs to bound into the keymap with something like
763
764     (define-key 'notmuch-show-mode-map "D" 'my-notmuch-show-view-as-patch)