]> git.notmuchmail.org Git - notmuch/blob - doc/man7/notmuch-properties.rst
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / doc / man7 / notmuch-properties.rst
1 .. _notmuch-properties(7):
2
3 ==================
4 notmuch-properties
5 ==================
6
7 SYNOPSIS
8 ========
9
10 **notmuch** **count** **property:**\ <*key*>=<*value*>
11
12 **notmuch** **search** **property:**\ <*key*>=<*value*>
13
14 **notmuch** **show** **property:**\ <*key*>=<*value*>
15
16 **notmuch** **reindex** **property:**\ <*key*>=<*value*>
17
18 **notmuch** **tag** +<*tag*> **property:**\ <*key*>=<*value*>
19
20
21 **notmuch** **dump** **--include=properties**
22
23 **notmuch** **restore** **--include=properties**
24
25 DESCRIPTION
26 ===========
27
28 Several notmuch commands can search for, modify, add or remove
29 properties associated with specific messages.  Properties are
30 key/value pairs, and a message can have more than one key/value pair
31 for the same key.
32
33 While users can select based on a specific property in their search
34 terms with the prefix **property:**, the notmuch command-line
35 interface does not provide mechanisms for modifying properties
36 directly to the user.
37
38 Instead, message properties are expected to be set and used
39 programmatically, according to logic in notmuch itself, or in
40 extensions to it.
41
42 Extensions to notmuch which make use of properties are encouraged to
43 report the specific properties used to the upstream notmuch project,
44 as a way of avoiding collisions in the property namespace.
45
46 CONVENTIONS
47 ===========
48
49 Any property with a key that starts with "index." will be removed (and
50 possibly re-set) upon reindexing (see :any:`notmuch-reindex(1)`).
51
52 MESSAGE PROPERTIES
53 ==================
54
55 The following properties are set by notmuch internally in the course
56 of its normal activity.
57
58 index.decryption
59     If a message contains encrypted content, and notmuch tries to
60     decrypt that content during indexing, it will add the property
61     ``index.decryption=success`` when the cleartext was successfully
62     indexed.  If notmuch attempts to decrypt any part of a message
63     during indexing and that decryption attempt fails, it will add the
64     property ``index.decryption=failure`` to the message.
65
66     Note that it's possible for a single message to have both
67     ``index.decryption=success`` and ``index.decryption=failure``.
68     Consider an encrypted e-mail message that contains another
69     encrypted e-mail message as an attachment -- if the outer message
70     can be decrypted, but the attached part cannot, then both
71     properties will be set on the message as a whole.
72
73     If notmuch never tried to decrypt an encrypted message during
74     indexing (which is the default, see ``index.decrypt`` in
75     :any:`notmuch-config(1)`), then this property will not be set on that
76     message.
77
78 session-key
79     When :any:`notmuch-show(1)` or :any:`notmuch-reply(1)` encounters
80     a message with an encrypted part, if notmuch finds a
81     ``session-key`` property associated with the message, it will try
82     that stashed session key for decryption.
83
84     If you do not want to use any stashed session keys that might be
85     present, you should pass those programs ``--decrypt=false``.
86
87     Using a stashed session key with "notmuch show" will speed up
88     rendering of long encrypted threads.  It also allows the user to
89     destroy the secret part of any expired encryption-capable subkey
90     while still being able to read any retained messages for which
91     they have stashed the session key.  This enables truly deletable
92     e-mail, since (once the session key and asymmetric subkey are both
93     destroyed) there are no keys left that can be used to decrypt any
94     copy of the original message previously stored by an adversary.
95
96     However, access to the stashed session key for an encrypted message
97     permits full byte-for-byte reconstruction of the cleartext
98     message.  This includes attachments, cryptographic signatures, and
99     other material that cannot be reconstructed from the index alone.
100
101     See ``index.decrypt`` in :any:`notmuch-config(1)` for more
102     details about how to set notmuch's policy on when to store session
103     keys.
104
105     The session key should be in the ASCII text form produced by
106     GnuPG.  For OpenPGP, that consists of a decimal representation of
107     the hash algorithm used (identified by number from RFC 4880,
108     e.g. 9 means AES-256) followed by a colon, followed by a
109     hexadecimal representation of the algorithm-specific key.  For
110     example, an AES-128 key might be stashed in a notmuch property as:
111     ``session-key=7:14B16AF65536C28AF209828DFE34C9E0``.
112
113 index.repaired
114     Some messages arrive in forms that are confusing to view; they can
115     be mangled by mail transport agents, or the sending mail user
116     agent may structure them in a way that is confusing.  If notmuch
117     knows how to both detect and repair such a problematic message, it
118     will do so during indexing.
119
120     If it applies a message repair during indexing, it will use the
121     ``index.repaired`` property to note the type of repair(s) it
122     performed.
123
124     ``index.repaired=skip-protected-headers-legacy-display`` indicates
125     that when indexing the cleartext of an encrypted message, notmuch
126     skipped over a "legacy-display" text/rfc822-headers part that it
127     found in that message, since it was able to index the built-in
128     protected headers directly.
129
130     ``index.repaired=mixedup`` indicates the repair of a "Mixed Up"
131     encrypted PGP/MIME message, a mangling typically produced by
132     Microsoft's Exchange MTA.  See
133     https://tools.ietf.org/html/draft-dkg-openpgp-pgpmime-message-mangling
134     for more information.
135
136 SEE ALSO
137 ========
138
139 :any:`notmuch(1)`,
140 :any:`notmuch-config(1)`,
141 :any:`notmuch-dump(1)`,
142 :any:`notmuch-insert(1)`,
143 :any:`notmuch-new(1)`,
144 :any:`notmuch-reindex(1)`,
145 :any:`notmuch-reply(1)`,
146 :any:`notmuch-restore(1)`,
147 :any:`notmuch-search-terms(7)`,
148 :any:`notmuch-show(1)`