1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
| | \input texinfo @c -*-texinfo-*-
@comment $Id@w{$}
@comment %**start of header
@setfilename notmuch-emacs.info
@include version.texi
@settitle Notmuch @value{VERSION}
@comment %**end of header
@macro keyindex {NAME}
@kindex \NAME\
@cindex \NAME\
@end macro
@macro funindex {NAME}
@findex \NAME\
@cindex \NAME\
@end macro
@macro varindex {NAME}
@vindex \NAME\
@cindex \NAME\
@end macro
@copying
This manual is for Notmuch (version @value{VERSION})
Copyright @copyright{} 2013 David Bremner
This manual is distributed under the same terms as notmuch, which are as follows.
@quotation
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/ .
@end quotation
@end copying
@dircategory Notmuch
@direntry
* notmuch-emacs: (notmuch-emacs). Emacs interface to notmuch
@end direntry
@titlepage
@title Notmuch
@subtitle for version @value{VERSION}
@author David Bremner (@email{david@@tethera.net})
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
@contents
@ifnottex
@node Top
@top Notmuch
This manual is for Notmuch (version @value{VERSION}).
@end ifnottex
@menu
* About this Manual::
* notmuch-hello::
* notmuch-search::
* Configuration::
* Function Index::
* Variable Index::
* Index::
@end menu
@node About this Manual
@unnumbered About this Manual
This manual covers only the emacs interface to notmuch. For
information on the command line interface, see
@xref{top,the notmuch man page,Description,notmuch,Notmuch Manual Pager}.
To save
typing, we will sometimes use @emph{notmuch} in this manual to refer
to the Emacs interface to notmuch. If the distinction should every be
important, we'll refer to the Emacs inteface as @emph{notmuch-emacs}.
Notmuch-emacs is highly customizable via the the Emacs customization
framework (or just by setting the appropriate variables). We try to
point out relevant variables in this manual, but in order to avoid
duplication of information, but you can usually find the most detailed
description in the varables docstring.
@node notmuch-hello
@chapter notmuch-hello
@funindex notmuch-hello
@funindex notmuch
@command{notmuch-hello} is the main entry point for notmuch. You can
start it with @kbd{M-x notmuch} or @kbd{M-x notmuch-hello}. The
startup screen looks something like the following. There are some
hints at the bottom of the screen. There are three main parts to the
notmuch-hello screen, discussed below. The @strong{bold} text
indicates buttons you can click with a mouse or by positioning the
cursor and pressing @kbd{<return>}
@example
@group
----------------------------------------------------------------------------
Welcome to @strong{notmuch}. You have 52 messages.
Saved searches: @strong{[edit]}
52 @strong{inbox} 52 @strong{unread}
Search: .
All tags: @strong{[show]}
Type a search query and hit RET to view matching threads.
Edit saved searches with the `edit' button.
Hit RET or click on a saved search or tag name to view matching threads.
`=' to refresh this screen. `s' to search messages. `q' to quit.
@strong{Customize} this page.
----------------------------------------------------------------------------
@end group
@end example
You can change the overall appearence of the notmuch-hello screen by
customizing the variable @var{notmuch-hello-sections}.
@varindex{notmuch-hellow-sections}
@menu
* notemuch-hello Key Bindings::
* Saved Searches::
* Search Box::
* Known Tags::
@end menu
@node notemuch-hello Key Bindings
@section notmuch-hello key bindings
@table @kbd
@item <tab>
Move to the next widget (button or text entry field)
@item <backtab>
Move to the previous widget.
@item <return>
Activate the current widget.
@item =
Refresh the buffer; mainly update the counts of messages for various
saved searches.
@item G
Import mail, @xref{Importing Mail}.
@item m
Compose a message
@item s
Search the notmuch database, @xref{notmuch-search}.
@item v
Print notmuch version
@item q
Quit
@end table
@node Saved Searches
@section Saved Searches
@cindex Saved Searches
@varindex notmuch-saved-searches
@varindex notmuch-saved-search-sort-function
@varindex notmuch-column-control
Notmuch replaces the static assignment of messages with the more
dynamic notion of searching.
Notmuch-hello presents the user with a customizable set of saved
searchs. The initial defaults are @code{tag:inbox} and
@code{tag:unread}, but you can customize the following variables
@table @var
@item notmuch-saved-searches
A list of cons pairs, the first being the name to display, the second
being a query string for notmuch. @xref{top,Notmuch Query
Syntax,Description,notmuch-search-terms,Notmuch Query Syntax}.
@item notmuch-saved-searches-sort-function
This variable controls how saved searches should be sorted. A value
of @code{nil} displays the saved searches in the order they are
stored in `notmuch-saved-searches'.
@item notmuch-column-control
Controls the number of columns for displaying saved-searches/tags
@end table
@node Search Box
@section Search Box
@cindex Search Box
@varindex notmuch-hello-recent-searches-max
The search box lets the user enter an notmuch query. @xref{top,Notmuch
Query Syntax,Description,notmuch-search-terms,Notmuch Query Syntax},
for more info on notmuch query syntax. A history of recent searches is
also displayed by default. The latter is controlled by the variable
@var{notmuch-hello-recent-searches-max}.
@node Known Tags
@section Know Tags
@cindex Known Tags
@varindex notmuch-hello-tag-list-make-query
@varindex notmuch-hello-hide-tags
@varindex notmuch-column-control
One special kind of saved search provided by default is for each
individual tag defined in the database. This can be controlled via the
following variables.
@table @var
@item notmuch-hello-tag-list-make-query
Control how to construct a search (``virtual folder'') from a given tag.
@item notmuch-hello-hide-tags
Which tags not to display at all.
@item notmuch-column-control
Controls the number of columns for displaying saved-searches/tags
@end table
@node notmuch-search
@chapter notmuch-search
@node Configuration
@chapter Configuration
@menu
* Importing Mail::
@end menu
@node Importing Mail
@section Importing Mail
@funindex notmuch-poll
@vindex notmuch-poll-script
@node Function Index
@unnumbered Function Index
@printindex fn
@node Variable Index
@unnumbered Variable Index
@printindex vr
@node Index
@unnumbered Index
@printindex cp
@bye
|