]> git.cworth.org Git - notmuch-wiki/blob - emacstips.mdwn
tagging changes for 0.12 informed
[notmuch-wiki] / emacstips.mdwn
1 <!-- -*- mode: text; indent-tabs-mode: nil -*- -->
2
3 [[!img notmuch-logo.png alt="Notmuch logo" class="left"]]
4 #Tips and Tricks for using notmuch with Emacs
5
6 [[!toc levels=2]]
7
8 The main Notmuch message reading client is **notmuch.el**, which is an
9 [emacs](http://www.gnu.org/software/emacs/) major mode, and is
10 included in the notmuch package.
11
12 ## Setup
13
14 To use the Notmuch emacs mode, first add the following line to your
15 `.emacs` rc file:
16
17         (require 'notmuch)
18
19 or you can load the package via autoload:
20
21         (autoload 'notmuch "notmuch" "notmuch mail" t)
22
23 Then, either run "emacs -f notmuch", or execute the command `M-x
24 notmuch` from within a running emacs.
25
26 ## Navigating & reading mails
27
28 When first starting notmuch in emacs, you will be presented with the
29 notmuch "hello" page.  From here you can do searches, see lists of
30 recent searches, saved searches, message tags, help information, etc.
31
32 Executing a search will open a new buffer in `notmuch-search-mode`
33 displaying the search results.  Each line in the search results
34 represents a message thread.  Hitting the '?' key will show help for
35 this mode.
36
37 In general, the 'q' will kill the current notmuch buffer and return
38 you to the previous buffer (sort of like a 'pop').
39
40 In search mode, navigating to a thread and hitting return will then
41 open a new buffer in `notmuch-show-mode`, which will show the actual
42 message contents of the thread.
43
44 ## Sending mail
45
46 In any notmuch mode, you can start a new message by hitting the 'm'
47 key.  To reply to a message or thread, just hit the 'r' key.
48
49 When composing new messages, you will be entered in emacs's
50 `message-mode`, which is a powerful mode for composing and sending
51 messages.  When in message mode, you can type `C-c ?` for help.
52
53 If you would like to use address autocompletion when composing
54 messages, see [address completion](#address_completion).
55
56 When you are ready to send a message, type `C-c C-c`. By default
57 message mode will use your sendmail command to send mail, so make sure
58 that works. One annoying standard configuration of message mode is
59 that it will hide the sent mail in your emacs frame stack, but it will
60 not close it. If you type several mails in an emacs session they will
61 accumulate and make switching between buffers more annoying. You can
62 avoid that behavior by adding `(setq message-kill-buffer-on-exit t)`
63 in your `.emacs` file (or doing `M-x
64 customize-variable<RET>message-kill-buffer-on-exit<RET>`) which will
65 really close the mail window after sending it.
66
67 ## Attaching files
68
69 Using the `M-x mml-attach-file` command, you can attach any file to be
70 sent with your mail. By default this command is bound to the menu item
71 *Attachments--Attach File* with the key binding `C-c C-a`. The
72 variable `mml-dnd-attach-options` (`M-x
73 customize-variable<RET>mml-dnd-attach-options<RET>`) can be set to
74 allow the prompting for various attachment options (such as
75 inline/attachment) if you want to do that.
76
77 For those who prefer a more graphical interface, you can also simply
78 drag and drop files from a file manager into a mail composition window
79 to have them attached. In Ubuntu this works without any modifications
80 if files are dragged from the file manager.
81
82 And for those who prefer working from command line, the following
83 script opens new emacs window with empty message and attaches files
84 mentioned as script arguments. (Note: The script expects that you have
85 `(server-start)` in your `.emacs` file.)
86
87         #!/bin/sh
88         attach_cmds=""
89         while [ "$1" ]; do
90             fullpath=$(readlink --canonicalize $1)
91             attach_cmds="$attach_cmds (mml-attach-file \"$fullpath\")"
92             shift
93         done
94         emacsclient -a '' -c -e "(progn (compose-mail) $attach_cmds)"
95
96
97 -----
98
99 # Advanced tips and tweaks
100
101 ## Use separate emacs lisp file for notmuch configuration
102
103 Instead of adding notmuch configuration code to `.emacs`, there
104 is an option to collect those to a separate file (which is only
105 loaded when `notmuch` is invoked). To do this, write, for example
106 a file called `~/.emacs.d/my-notmuch.el`:
107
108         ;; my-notmuch.el -- my notmuch mail configuration
109         ;;
110         
111         ;; add here stuff required to be configured *before*
112         ;; notmuch is loaded;
113
114         ; uncomment and modify in case some elisp files are not found in load-path
115         ; (add-to-list 'load-path "~/vc/ext/notmuch/emacs")
116
117         ;; load notmuch 
118         (require 'notmuch)
119
120         ;; add here stuff required to be configured *after*
121         ;; notmuch is loaded;
122
123         ;(setq user-mail-address (notmuch-user-primary-email)
124         ;      user-full-name (notmuch-user-name))
125
126         ; uncomment & modify if you want to use external smtp server to send mail
127         ; (setq smtpmail-smtp-server "smtp.server.tld"
128         ;       message-send-mail-function 'message-smtpmail-send-it)
129
130 Then, adto `.emacs`:
131
132         (autoload 'notmuch "~/.emacs.d/my-notmuch" "notmuch mail" t)
133
134
135 ## Add a key binding to add/remove/toggle a tag
136
137 The `notmuch-{search,show}-{add,remove}-tag` functions are very useful
138 for making quick tag key bindings.  For instance, here's an example
139 of how to make a key binding to add the "spam" tag and remove the
140 "inbox" tag in notmuch-show-mode:
141
142 In notmuch versions up to 0.11.x
143
144         (define-key notmuch-show-mode-map "S"
145           (lambda ()
146             "mark message as spam"
147             (interactive)
148             (notmuch-show-add-tag "spam")
149             (notmuch-show-remove-tag "inbox")))
150
151 Starting from notmuch 0.12 (not released yet) the functions 
152 `notmuch-show-add-tag` and `notmuch-show-remove-tag` have changed to
153 be more versatile and lost noninteractive use. When upgrading to 0.12 
154 the above needs to be changed to this:
155
156         (define-key notmuch-show-mode-map "S"
157           (lambda ()
158             "mark message as spam"
159             (interactive)
160             (notmuch-show-tag-message "+spam" "-inbox")))
161
162 You can do the same for threads in `notmuch-search-mode` by just
163 replacing "show" with "search" in the called functions.
164
165 (Starting from notmuch 0.12 use `notmuch-search-tag-thread` instead)
166
167 The definition above makes use of a lambda function, but you could
168 also define a separate function first:
169
170         (defun notmuch-show-tag-spam()
171           "mark message as spam"
172           (interactive)
173           (notmuch-show-add-tag "spam")
174           (notmuch-show-remove-tag "inbox")))
175         (define-key notmuch-show-mode-map "S" 'notmuch-show-tag-spam)
176
177 (See above for analogy how to apply this for notmuch 0.12 and later)
178
179 Here's a more complicated example of how to add a toggle "deleted"
180 key:
181
182         (define-key notmuch-show-mode-map "d"
183           (lambda ()
184             "toggle deleted tag for message"
185             (interactive)
186             (if (member "deleted" (notmuch-show-get-tags))
187                 (notmuch-show-remove-tag "deleted")
188               (notmuch-show-add-tag "deleted"))))
189
190 And version for notmuch 0.12 (not released yet)
191
192         (define-key notmuch-show-mode-map "d"
193           (lambda ()
194             "toggle deleted tag for message"
195             (interactive)
196             (notmuch-show-tag-message
197               (if (member "deleted" (notmuch-show-get-tags)
198                    "+deleted" "-deleted")))))
199
200 ## Restore reply-to-all key binding to 'r'
201
202 Starting from notmuch 0.12 the 'r' key is bound to reply-to-sender instead of
203 reply-to-all. Here's how to swap the reply to sender/all bindings in show mode:
204
205         (define-key notmuch-show-mode-map "r" 'notmuch-show-reply)
206         (define-key notmuch-show-mode-map "R" 'notmuch-show-reply-sender)
207
208 And in search mode:
209
210         (define-key notmuch-search-mode-map "r" 'notmuch-search-reply-to-thread)
211         (define-key notmuch-search-mode-map "R" 'notmuch-search-reply-to-thread-sender)
212
213
214 ## How to do FCC/BCC...
215
216 The Emacs interface to notmuch will automatically add an `Fcc`
217 header to your outgoing mail so that any messages you send will also
218 be saved in your mail store. You can control where this copy of the
219 message is saved by setting the variables `message-directory` (which
220 defines a base directory) and `notmuch-fcc-dirs` which defines the
221 subdirectory relative to `message-directory` in which to save the
222 mail. Enter a directory (without the maildir `/cur` ending which
223 will be appended automatically). To customize both variables at the
224 same time, use the fancy command:
225
226         M-x customize-apropos<RET>\(notmuch-fcc-dirs\)\|\(message-directory\)
227
228 This mechanism also allows you to select different folders to be
229 used for the outgoing mail depending on your selected `From`
230 address. Please see the documentation for the variable
231 `notmuch-fcc-dirs` in the customization window for how to arrange
232 this.
233
234 ## How to customize `notmuch-saved-searches`
235
236 When starting notmuch, a list of saved searches and message counts is
237 displayed, replacing the older `notmuch-folders` command. The set of
238 saved searches displayed can be modified directly from the notmuch
239 interface (using the `[save]` button next to a previous search) or by
240 customising the variable `notmuch-saved-searches`.
241
242 An example setting might be:
243
244         (setq notmuch-saved-searches '(("inbox" . "tag:inbox")
245                         ("unread" . "tag:inbox AND tag:unread")
246                         ("notmuch" . "tag:inbox AND to:notmuchmail.org")))
247
248 Of course, you can have any number of saved searches, each configured
249 with any supported search terms (see "notmuch help search-terms").
250
251 Some users find it useful to add `and not tag:delete` to those
252 searches, as they use the `delete` tag to mark messages as
253 deleted. This causes messages that are marked as deleted to be removed
254 from the commonly used views of messages.  Use whatever seems most
255 useful to you.
256
257 ## Viewing HTML messages with an external viewer
258
259 The emacs client can display an HTML message inline using either the
260 `html2text` library or some text browser, like w3m or lynx. This is
261 controlled by the `mm-text-html-renderer` variable.
262
263 The first option is theorically better, because it can generate
264 strings formatted for emacs and do whatever you want, e.g., substitute
265 text inside &lt;b&gt; tags for bold text in the buffer. The library, however
266 is still in a very early development phase and cannot yet process
267 properly many elements, like tables and <style> directives, and even
268 the generated text is often poorly formatted.
269
270 Among the available browsers, w3m seems to do a better job converting
271 the html, and if you have the w3m emacs package, you can use it,
272 instead of the w3m-standalone, and thus preserve the text formatting.
273
274 But if the rendering fails for one reason or another, or if you really
275 need to see the graphical presentation of the HTML message, it can be
276 useful to display the message in an external viewer, such as a web
277 browser. Here's a little script that Keith Packard wrote, which he
278 calls `view-html`:
279
280         #!/bin/sh
281         dir=`mktemp -d`
282         trap "rm -r $dir" 0
283         cat "$@" > "$dir"/msg
284         if munpack -C "$dir" -t < "$dir"/msg 2>&1 | grep 'Did not find'; then
285             sed -n '/[Hh][Tt][Mm][Ll]/,$p' "$dir"/msg > $dir/part1.html
286             rm "$dir"/msg
287         fi
288         for i in "$dir"/part*; do
289             if grep -q -i -e '<html>' -e 'text/html' "$i"; then
290                 iceweasel "$i" &
291                 sleep 3
292                 exit 0
293             fi
294         done
295
296 Save that script somewhere in your `${PATH}`, make it executable,
297 and change the invocation of `iceweasel` to any other HTML viewer if
298 necessary. Then within the emacs client, press '|' to pipe the
299 current message, then type "view-html".
300
301 Keith mentions the following caveat, "Note that if iceweasel isn't
302 already running, it seems to shut down when the script exits. I
303 don't know why."
304
305 ## msmtp, message mode and multiple accounts
306
307 As an alternative to running a mail server such as sendmail or postfix
308 just to send email, it is possible to use
309 [msmtp](http://msmtp.sourceforge.net/). This small application will
310 look like `/usr/bin/sendmail` to a MUA such as emacs message mode, but
311 will just forward the email to an external SMTP server. It's fairly
312 easy to set up and it supports several accounts for using different
313 SMTP servers. The msmtp pages have several examples.
314
315 A typical scenario is that you want to use the company SMTP server
316 for email coming from your company email address, and your personal
317 server for personal email.  If msmtp is passed the envelope address
318 on the command line (the -f/--from option) it will automatically
319 pick the matching account.  The only trick here seems to be getting
320 emacs to actually pass the envelope from.  There are a number of
321 overlapping configuration variables that control this, and it's a
322 little confusion, but setting these three works for me:
323
324  - `mail-specify-envelope-from`: `t`
325
326  - `message-sendmail-envelope-from`: `header`
327
328  - `mail-envelope-from`: `header`
329
330 With that in place, you need a `.msmtprc` with the accounts configured
331 for the domains you want to send out using specific SMTP servers and
332 the rest will go to the default account.
333
334 If you have a hard time getting the above to work for you, as I did,
335 it's also possible to add a message-send-mail-hook in your .emacs to
336 send the from header explicitly as an argument to msmtp as described
337 [here](http://www.emacswiki.org/cgi-bin/wiki/GnusMSMTP#toc2) on the
338 emacswiki.
339
340
341 ## <span id="address_completion">Address completion when composing</span>
342
343 There are currently two solutions to this:
344
345 [bbdb](http://bbdb.sourceforge.net) is a contact database for emacs
346 that works quite nicely together with message mode, including
347 address autocompletion.
348
349 You can also use the notmuch database as a mail address book itself.
350 To do this you need a command line tool that outputs likely address
351 candidates based on a search string.  There are currently three
352 available:
353
354   * The python tool `notmuch_address.py` (`git clone
355     http://commonmeasure.org/~jkr/git/notmuch_addresses.git`) (slower, but
356     no compilation required so good for testing the setup)
357
358   * The vala-based
359     [addrlookup](http://github.com/spaetz/vala-notmuch) (faster, but
360     needs compiling).  The addrlookup binary needs to be compiled.
361     Grab
362     `http://github.com/spaetz/vala-notmuch/raw/static-sources/src/addrlookup.c`
363     and build it with:
364
365             cc -o addrlookup addrlookup.c `pkg-config --cflags --libs gobject-2.0` -lnotmuch
366
367   * Shell/fgrep/perl combination [nottoomuch-addresses.sh](http://www.iki.fi/too/nottoomuch/nottoomuch-addresses/). 
368     This tools maintains it's own address "database" gathered from email
369     files notmuch knows and search from that "database" is done by fgrep(1).
370
371 You can perform tab-completion using any of these programs. Just add the following to your .emacs:
372
373         (require 'notmuch-address)
374         (setq notmuch-address-command "/path/to/address_fetching_program")
375         (notmuch-address-message-insinuate)
376
377
378 ## How to sign/encrypt messages with gpg
379
380 Messages can by signed using gpg by invoking `M-x
381 mml-secure-sign-pgpmime` (or `M-x
382 mml-secure-encrypt-pgpmime`). These functions are available via the
383 standard `message-mode` keybindings `C-c C-m s p` and `C-c C-m c
384 p`. To sign outgoing mail by default, use the `message-setup-hook`
385 in your `.emacs` file:
386
387         ;; Sign messages by default.
388         (add-hook 'message-setup-hook 'mml-secure-sign-pgpmime)
389
390 This inserts the required `<#part sign=pgpmime>` into the beginning
391 of the mail text body and will be converted into a pgp signature
392 when sending (so one can just manually delete that line if signing
393 is not required).
394
395 Alternatively, you may prefer to use `mml-secure-message-sign-pgpmime` instead
396 of `mml-secure-sign-pgpmime` to sign the whole message instead of just one
397 part.
398
399 ### Troubleshooting message-mode gpg support
400
401 - If you have trouble with expired subkeys, you may have encounted
402   emacs bug #7931.  This is fixed in git commit 301ea744c on
403   2011-02-02.  Note that if you have the Debian package easypg
404   installed, it will shadow the fixed version of easypg included with
405   emacs.