]> git.cworth.org Git - notmuch-wiki/blob - manpages/notmuch-search-terms-7.mdwn
0259d42a486a33bb2c7cb16696e13b7aa3a4fdb0
[notmuch-wiki] / manpages / notmuch-search-terms-7.mdwn
1 <h1>NOTMUCH-SEARCH-TERMS(7)</h1>
2
3 <h2>NAME</h2>
4 <pre>
5        notmuch-search-terms - syntax for notmuch queries
6 </pre>
7
8 <h2>SYNOPSIS</h2>
9 <pre>
10        <b>notmuch</b> <b>count</b> [option ...] &lt;<u>search-term</u>&gt; ...
11
12        <b>notmuch</b>  <b>dump</b>  [--format=(batch-tag|sup)]  [--]  [--output=&lt;<u>file</u>&gt;] [--]
13        [&lt;<u>search-term</u>&gt; ...]
14
15        <b>notmuch</b> <b>reindex</b> [option ...] &lt;<u>search-term</u>&gt; ...
16
17        <b>notmuch</b> <b>search</b> [option ...] &lt;<u>search-term</u>&gt; ...
18
19        <b>notmuch</b> <b>show</b> [option ...] &lt;<u>search-term</u>&gt; ...
20
21        <b>notmuch</b> <b>tag</b> +&lt;<u>tag</u>&gt; ... -&lt;<u>tag</u>&gt; [--] &lt;<u>search-term</u>&gt; ...
22 </pre>
23
24 <h2>DESCRIPTION</h2>
25 <pre>
26        Several notmuch commands accept a common syntax for search terms.
27
28        The search terms can consist of free-form  text  (and  quoted  phrases)
29        which   will   match  all  messages  that  contain  all  of  the  given
30        terms/phrases in the body, the subject, or any of the sender or recipi‐
31        ent headers.
32
33        As  a  special  case,  a  search  string consisting of exactly a single
34        asterisk (&quot;*&quot;) will match all messages.
35 </pre>
36
37 <h3> &nbsp; Search prefixes</h3>
38 <pre>
39        In addition to free text, the following prefixes can be used  to  force
40        terms to match against specific portions of an email, (where &lt;brackets&gt;
41        indicate user-supplied values).
42
43        If notmuch is built with <b>Xapian</b> <b>Field</b> <b>Processors</b> (see  below)  some  of
44        the  prefixes  with  &lt;regex&gt;  forms  can  be  also used to restrict the
45        results  to  those  whose  value  matches  a  regular  expression  (see
46        <b>regex</b>(7)) delimited with //, for example:
47
48           notmuch search &apos;from:/bob@.*[.]example[.]com/&apos;
49
50        <b>from:&lt;name-or-address&gt;</b> <b>or</b> <b>from:/&lt;regex&gt;/</b>
51               The  <b>from:</b>  prefix  is  used to match the name or address of the
52               sender of an email message.
53
54        <b>to:&lt;name-or-address&gt;</b>
55               The <b>to:</b> prefix is used to match the names or  addresses  of  any
56               recipient of an email message, (whether To, Cc, or Bcc).
57
58        <b>subject:&lt;word-or-quoted-phrase&gt;</b> <b>or</b> <b>subject:/&lt;regex&gt;/</b>
59               Any  term  prefixed  with <b>subject:</b> will match only text from the
60               subject of an email. Searching for a phrase in  the  subject  is
61               supported  by including quotation marks around the phrase, imme‐
62               diately following <b>subject:</b>.
63
64        <b>attachment:&lt;word&gt;</b>
65               The <b>attachment:</b> prefix can be used to search for specific  file‐
66               names (or extensions) of attachments to email messages.
67
68        <b>mimetype:&lt;word&gt;</b>
69               The  <b>mimetype:</b>  prefix  will be used to match text from the con‐
70               tent-types of MIME parts within email messages (as specified  by
71               the sender).
72
73        <b>tag:&lt;tag&gt;</b> <b>or</b> <b>tag:/&lt;regex&gt;/</b> <b>or</b> <b>is:&lt;tag&gt;</b> <b>or</b> <b>is:/&lt;regex&gt;/</b>
74               For  <b>tag:</b>  and  <b>is:</b> valid tag values include <b>inbox</b> and <b>unread</b> by
75               default for new messages added by <b>notmuch</b> <b>new</b>  as  well  as  any
76               other tag values added manually with <b>notmuch</b> <b>tag</b>.
77
78        <b>id:&lt;message-id&gt;</b> <b>or</b> <b>mid:&lt;message-id&gt;</b> <b>or</b> <b>mid:/&lt;regex&gt;/</b>
79               For  <b>id:</b> and <b>mid:</b>, message ID values are the literal contents of
80               the Message-ID: header of email messages, but without  the  &apos;&lt;&apos;,
81               &apos;&gt;&apos; delimiters.
82
83        <b>thread:&lt;thread-id&gt;</b>
84               The  <b>thread:</b>  prefix  can be used with the thread ID values that
85               are generated internally by notmuch (and do not appear in  email
86               messages).  These thread ID values can be seen in the first col‐
87               umn of output from <b>notmuch</b> <b>search</b>
88
89        <b>path:&lt;directory-path&gt;</b> <b>or</b> <b>path:&lt;directory-path&gt;/**</b> <b>or</b> <b>path:/&lt;regex&gt;/</b>
90               The <b>path:</b> prefix searches for email messages that are in partic‐
91               ular  directories  within  the mail store. The directory must be
92               specified relative to the top-level  maildir  (and  without  the
93               leading slash). By default, <b>path:</b> matches messages in the speci‐
94               fied directory only. The &quot;/**&quot; suffix can be used to match  mes‐
95               sages  in  the  specified  directory  and all its subdirectories
96               recursively. <b>path:&quot;&quot;</b> matches messages in the root  of  the  mail
97               store and, likewise, <b>path:**</b> matches all messages.
98
99               <b>path:</b>  will find a message if <u>any</u> copy of that message is in the
100               specific directory.
101
102        <b>folder:&lt;maildir-folder&gt;</b> <b>or</b> <b>folder:/&lt;regex&gt;/</b>
103               The <b>folder:</b> prefix searches for email messages by maildir or  MH
104               folder.  For  MH-style folders, this is equivalent to <b>path:</b>. For
105               maildir, this includes messages in the &quot;new&quot; and &quot;cur&quot; subdirec‐
106               tories.  The  exact  syntax  for maildir folders depends on your
107               mail configuration. For maildir++, <b>folder:&quot;&quot;</b> matches  the  inbox
108               folder  (which  is  the  root  in maildir++), other folder names
109               always start with &quot;.&quot;, and nested folders are separated by &quot;.&quot;s,
110               such as <b>folder:.classes.topology</b>. For &quot;file system&quot; maildir, the
111               inbox is typically <b>folder:INBOX</b> and nested folders are separated
112               by slashes, such as <b>folder:classes/topology</b>.
113
114               <b>folder:</b>  will  find  a message if <u>any</u> copy of that message is in
115               the specific folder.
116
117        <b>date:&lt;since&gt;..&lt;until&gt;</b> <b>or</b> <b>date:&lt;date&gt;</b>
118               The <b>date:</b> prefix can be used to restrict  the  results  to  only
119               messages  within  a  particular  time  range (based on the Date:
120               header).
121
122               See <b>DATE</b> <b>AND</b> <b>TIME</b> <b>SEARCH</b> below for details on the range  expres‐
123               sion, and supported syntax for &lt;since&gt; and &lt;until&gt; date and time
124               expressions.
125
126               The time range can also be specified  using  timestamps  with  a
127               syntax of:
128
129               &lt;initial-timestamp&gt;..&lt;final-timestamp&gt;
130
131               Each  timestamp  is  a number representing the number of seconds
132               since 1970-01-01 00:00:00 UTC.
133
134        <b>lastmod:&lt;initial-revision&gt;..&lt;final-revision&gt;</b>
135               The <b>lastmod:</b> prefix can be used to restrict the  result  by  the
136               database  revision  number  of  when messages were last modified
137               (tags were added/removed or filenames changed). This is  usually
138               used  in  conjunction with the <b>--uuid</b> argument to <b>notmuch</b> <b>search</b>
139               to find messages that have changed since an earlier query.
140
141        <b>query:&lt;name&gt;</b>
142               The <b>query:</b> prefix allows queries to refer  to  previously  saved
143               queries  added  with  <a href='../notmuch-config-1/'>notmuch-config</a>(1).  Named queries are only
144               available if notmuch is built with <b>Xapian</b> <b>Field</b> <b>Processors</b>  (see
145               below).
146
147        <b>property:&lt;key&gt;=&lt;value&gt;</b>
148               The  <b>property:</b>  prefix  searches  for messages with a particular
149               &lt;key&gt;=&lt;value&gt; property pair. Properties are used  internally  by
150               notmuch  (and  extensions)  to add metadata to messages. A given
151               key can be present on a given  message  with  several  different
152               values.  See <a href='../notmuch-properties-7/'>notmuch-properties</a>(7) for more details.
153 </pre>
154
155 <h3> &nbsp; Operators</h3>
156 <pre>
157        In  addition  to  individual terms, multiple terms can be combined with
158        Boolean operators (<b>and</b>, <b>or</b>, <b>not</b>, and <b>xor</b>). Each term in the query  will
159        be  implicitly  connected  by  a logical AND if no explicit operator is
160        provided (except that terms with a common  prefix  will  be  implicitly
161        combined  with  OR).   The  shorthand  &apos;-&lt;term&gt;&apos;  can  be used for &apos;not
162        &lt;term&gt;&apos; but unfortunately this does not work at the start of an expres‐
163        sion.   Parentheses  can also be used to control the combination of the
164        Boolean operators, but will have to be protected from interpretation by
165        the shell, (such as by putting quotation marks around any parenthesized
166        expression).
167
168        In addition to the standard boolean operators, Xapian provides  several
169        operators specific to text searching.
170
171           notmuch search term1 NEAR term2
172
173        will  return  results  where  term1  is  within  10 words of term2. The
174        threshold can be set like this:
175
176           notmuch search term1 NEAR/2 term2
177
178        The search
179
180           notmuch search term1 ADJ term2
181
182        will return results where term1 is within 10 words of term2, but in the
183        same  order  as in the query. The threshold can be set the same as with
184        NEAR:
185
186           notmuch search term1 ADJ/7 term2
187 </pre>
188
189 <h3> &nbsp; Stemming</h3>
190 <pre>
191        <b>Stemming</b> in notmuch means that these searches
192
193           notmuch search detailed
194           notmuch search details
195           notmuch search detail
196
197        will all return identical results, because Xapian first  &quot;reduces&quot;  the
198        term to the common stem (here &apos;detail&apos;) and then performs the search.
199
200        There  are  two  ways to turn this off: a search for a capitalized word
201        will be performed unstemmed, so that one can search for &quot;John&quot; and  not
202        get  results  for  &quot;Johnson&quot;;  phrase  searches are also unstemmed (see
203        below for details).  Stemming is currently only supported for  English.
204        Searches for words in other languages will be performed unstemmed.
205 </pre>
206
207 <h3> &nbsp; Wildcards</h3>
208 <pre>
209        It  is  possible  to  use  a  trailing  &apos;*&apos; as a wildcard. A search for
210        &apos;wildc*&apos; will match &apos;wildcard&apos;, &apos;wildcat&apos;, etc.
211 </pre>
212
213 <h3> &nbsp; Boolean and Probabilistic Prefixes</h3>
214 <pre>
215        Xapian (and hence notmuch)  prefixes  are  either  <b>boolean</b>,  supporting
216        exact  matches  like  &quot;<u>tag:inbox</u>&quot;  or  <b>probabilistic</b>, supporting a more
217        flexible <b>term</b> based searching. Certain <b>special</b> prefixes  are  processed
218        by  notmuch  in  a way not strictly fitting either of Xapian&apos;s built in
219        styles. The prefixes currently supported by notmuch are as follows.
220
221        <b>Boolean</b>
222               <b>tag:</b>, <b>id:</b>, <b>thread:</b>, <b>folder:</b>, <b>path:</b>, <b>property:</b>
223
224        <b>Probabilistic</b>
225               <b>to:</b>, <b>attachment:</b>, <b>mimetype:</b>
226
227        <b>Special</b>
228               <b>from:</b>, <b>query:</b>, <b>subject:</b>
229 </pre>
230
231 <h3> &nbsp; Terms and phrases</h3>
232 <pre>
233        In general Xapian distinguishes between lists  of  terms  and  <b>phrases</b>.
234        Phrases are indicated by double quotes (but beware you probably need to
235        protect those from your shell) and insist that  those  unstemmed  words
236        occur  in  that  order. One useful, but initially surprising feature is
237        that the following are equivalent ways to write the same phrase.
238
239        · &quot;a list of words&quot;
240
241        · a-list-of-words
242
243        · a/list/of/words
244
245        · a.list.of.words
246
247        Both parenthesised lists of terms and quoted phrases are ok with proba‐
248        bilistic prefixes such as <b>to:</b>, <b>from:</b>, and <b>subject:</b>. In particular
249
250           subject:(pizza free)
251
252        is equivalent to
253
254           subject:pizza and subject:free
255
256        Both of these will match a subject &quot;Free Delicious Pizza&quot; while
257
258           subject:&quot;pizza free&quot;
259
260        will not.
261 </pre>
262
263 <h2>DATE AND TIME SEARCH</h2>
264 <pre>
265        notmuch  understands a variety of standard and natural ways of express‐
266        ing dates and times, both in absolute terms (&quot;2012-10-24&quot;) and in rela‐
267        tive  terms (&quot;yesterday&quot;). Any number of relative terms can be combined
268        (&quot;1 hour 25 minutes&quot;) and an absolute date/time can  be  combined  with
269        relative  terms  to  further adjust it. A non-exhaustive description of
270        the syntax supported for absolute and relative terms is given below.
271 </pre>
272
273 <h3> &nbsp; The range expression</h3>
274 <pre>
275        date:&lt;since&gt;..&lt;until&gt;
276
277        The above expression  restricts  the  results  to  only  messages  from
278        &lt;since&gt; to &lt;until&gt;, based on the Date: header.
279
280        &lt;since&gt;  and &lt;until&gt; can describe imprecise times, such as &quot;yesterday&quot;.
281        In this case, &lt;since&gt; is taken as the earliest time it  could  describe
282        (the beginning of yesterday) and &lt;until&gt; is taken as the latest time it
283        could describe (the end of yesterday). Similarly,  date:january..febru‐
284        ary matches from the beginning of January to the end of February.
285
286        date:&lt;expr&gt;..!  can be used as a shorthand for date:&lt;expr&gt;..&lt;expr&gt;. The
287        expansion takes place before interpretation,  and  thus,  for  example,
288        date:monday..!  matches  from  the beginning of Monday until the end of
289        Monday.  With <b>Xapian</b> <b>Field</b> <b>Processor</b>  support  (see  below),  non-range
290        date  queries such as date:yesterday will work, but otherwise will give
291        unexpected results; if in doubt use date:yesterday..!
292
293        Currently, we do not support  spaces  in  range  expressions.  You  can
294        replace the spaces with &apos;_&apos;, or (in most cases) &apos;-&apos;, or (in some cases)
295        leave the spaces out altogether. Examples in this man page  use  spaces
296        for clarity.
297
298        Open-ended  ranges are supported (since Xapian 1.2.1), i.e. it&apos;s possi‐
299        ble to specify date:..&lt;until&gt; or date:&lt;since&gt;.. to not limit the  start
300        or end time, respectively. Pre-1.2.1 Xapian does not report an error on
301        open ended ranges, but it does not work as expected either.
302 </pre>
303
304 <h3> &nbsp; Relative date and time</h3>
305 <pre>
306        [N|number]         (years|months|weeks|days|hours|hrs|minutes|mins|sec‐
307        onds|secs) [...]
308
309        All refer to past, can be repeated and will be accumulated.
310
311        Units  can  be  abbreviated to any length, with the otherwise ambiguous
312        single m being m for minutes and M for months.
313
314        Number can also be written out one,  two,  ...,  ten,  dozen,  hundred.
315        Additionally, the unit may be preceded by &quot;last&quot; or &quot;this&quot; (e.g., &quot;last
316        week&quot; or &quot;this month&quot;).
317
318        When combined with absolute date and time, the relative date  and  time
319        specification  will  be  relative  from the specified absolute date and
320        time.
321
322        Examples: 5M2d, two weeks
323 </pre>
324
325 <h3> &nbsp; Supported absolute time formats</h3>
326 <pre>
327        · H[H]:MM[:SS] [(am|a.m.|pm|p.m.)]
328
329        · H[H] (am|a.m.|pm|p.m.)
330
331        · HHMMSS
332
333        · now
334
335        · noon
336
337        · midnight
338
339        · Examples: 17:05, 5pm
340 </pre>
341
342 <h3> &nbsp; Supported absolute date formats</h3>
343 <pre>
344        · YYYY-MM[-DD]
345
346        · DD-MM[-[YY]YY]
347
348        · MM-YYYY
349
350        · M[M]/D[D][/[YY]YY]
351
352        · M[M]/YYYY
353
354        · D[D].M[M][.[YY]YY]
355
356        · D[D][(st|nd|rd|th)] Mon[thname] [YYYY]
357
358        · Mon[thname] D[D][(st|nd|rd|th)] [YYYY]
359
360        · Wee[kday]
361
362        Month names can be abbreviated at three or more characters.
363
364        Weekday names can be abbreviated at three or more characters.
365
366        Examples: 2012-07-31, 31-07-2012, 7/31/2012, August 3
367 </pre>
368
369 <h3> &nbsp; Time zones</h3>
370 <pre>
371        · (+|-)HH:MM
372
373        · (+|-)HH[MM]
374
375        Some time zone codes, e.g. UTC, EET.
376 </pre>
377
378 <h2>XAPIAN FIELD PROCESSORS</h2>
379 <pre>
380        Certain optional features of the notmuch query processor  rely  on  the
381        presence  of  the Xapian field processor API. You can determine if your
382        notmuch was built against a sufficiently recent version  of  Xapian  by
383        running
384
385           % notmuch config get built_with.field_processor
386
387        Currently the following features require field processor support:
388
389        · non-range date queries, e.g. &quot;date:today&quot;
390
391        · named queries e.g. &quot;query:my_special_query&quot;
392
393        · regular expression searches, e.g. &quot;subject:/^\[SPAM\]/&quot;
394 </pre>
395
396 <h2>SEE ALSO</h2>
397 <pre>
398        <a href='../notmuch-1/'>notmuch</a>(1),  <a href='../notmuch-config-1/'>notmuch-config</a>(1), <a href='../notmuch-count-1/'>notmuch-count</a>(1), <a href='../notmuch-dump-1/'>notmuch-dump</a>(1), <a href='../notmuch-hooks-5/'>not‐</a>
399        <a href='../notmuch-hooks-5/'>much-hooks</a>(5), <a href='../notmuch-insert-1/'>notmuch-insert</a>(1),  <a href='../notmuch-new-1/'>notmuch-new</a>(1),  <a href='../notmuch-reindex-1/'>notmuch-reindex</a>(1),
400        <b>notmuch-properties</b>(1),   <b>*notmuch-reply</b>(1),   <a href='../notmuch-restore-1/'>notmuch-restore</a>(1),  <a href='../notmuch-search-1/'>not‐</a>
401        <a href='../notmuch-search-1/'>much-search</a>(1), <b>*notmuch-show</b>(1), <a href='../notmuch-tag-1/'>notmuch-tag</a>(1)
402 </pre>
403
404 <h2>AUTHOR</h2>
405 <pre>
406        Carl Worth and many others
407 </pre>
408
409 <h2>COPYRIGHT</h2>
410 <pre>
411        2009-2018, Carl Worth and many others
412 </pre>
413
414 <h2>0.26</h2>