]> git.notmuchmail.org Git - notmuch/blob - doc/man1/notmuch-config.rst
config: test whether an item is stored in the database by name
[notmuch] / doc / man1 / notmuch-config.rst
1 ==============
2 notmuch-config
3 ==============
4
5 SYNOPSIS
6 ========
7
8 **notmuch** **config** **get** <*section*>.<*item*>
9
10 **notmuch** **config** **set** <*section*>.<*item*> [*value* ...]
11
12 **notmuch** **config** **list**
13
14 DESCRIPTION
15 ===========
16
17 The **config** command can be used to get or set settings in the notmuch
18 configuration file and corresponding database.
19
20 Items marked **[STORED IN DATABASE]** are only in the database.  They
21 should not be placed in the configuration file, and should be accessed
22 programmatically as described in the SYNOPSIS above.
23
24     **get**
25         The value of the specified configuration item is printed to
26         stdout. If the item has multiple values (it is a list), each
27         value is separated by a newline character.
28
29     **set**
30         The specified configuration item is set to the given value. To
31         specify a multiple-value item (a list), provide each value as a
32         separate command-line argument.
33
34         If no values are provided, the specified configuration item will
35         be removed from the configuration file.
36
37     **list**
38         Every configuration item is printed to stdout, each on a
39         separate line of the form:
40
41         *section*.\ *item*\ =\ *value*
42
43         No additional whitespace surrounds the dot or equals sign
44         characters. In a multiple-value item (a list), the values are
45         separated by semicolon characters.
46
47 The available configuration items are described below.
48
49     **database.path**
50         The top-level directory where your mail currently exists and to
51         where mail will be delivered in the future. Files should be
52         individual email messages. Notmuch will store its database
53         within a sub-directory of the path configured here named
54         ``.notmuch``.
55
56         Default: ``$MAILDIR`` variable if set, otherwise ``$HOME/mail``.
57
58     **user.name**
59         Your full name.
60
61         Default: ``$NAME`` variable if set, otherwise read from
62         ``/etc/passwd``.
63
64     **user.primary\_email**
65         Your primary email address.
66
67         Default: ``$EMAIL`` variable if set, otherwise constructed from the
68         username and hostname of the current machine.
69
70     **user.other\_email**
71         A list of other email addresses at which you receive email.
72
73         Default: not set.
74
75     **new.tags**
76         A list of tags that will be added to all messages incorporated
77         by **notmuch new**.
78
79         Default: ``unread;inbox``.
80
81     **new.ignore**
82         A list of file and directory names, without path, that will not
83         be searched for messages by **notmuch new**. All the files and
84         directories matching any of the names specified here will be
85         ignored, regardless of the location in the mail store directory
86         hierarchy.
87
88         Default: empty list.
89
90     **search.exclude\_tags**
91         A list of tags that will be excluded from search results by
92         default. Using an excluded tag in a query will override that
93         exclusion.
94
95         Default: empty list. Note that **notmuch-setup(1)** puts
96         ``deleted;spam`` here when creating new configuration file.
97
98
99
100     **maildir.synchronize\_flags**
101         If true, then the following maildir flags (in message filenames)
102         will be synchronized with the corresponding notmuch tags:
103
104         +--------+-----------------------------------------------+
105         | Flag   | Tag                                           |
106         +========+===============================================+
107         | D      | draft                                         |
108         +--------+-----------------------------------------------+
109         | F      | flagged                                       |
110         +--------+-----------------------------------------------+
111         | P      | passed                                        |
112         +--------+-----------------------------------------------+
113         | R      | replied                                       |
114         +--------+-----------------------------------------------+
115         | S      | unread (added when 'S' flag is not present)   |
116         +--------+-----------------------------------------------+
117
118         The **notmuch new** command will notice flag changes in
119         filenames and update tags, while the **notmuch tag** and
120         **notmuch restore** commands will notice tag changes and update
121         flags in filenames.
122
123         If there have been any changes in the maildir (new messages
124         added, old ones removed or renamed, maildir flags changed,
125         etc.), it is advisable to run **notmuch new** before **notmuch
126         tag** or **notmuch restore** commands to ensure the tag changes
127         are properly synchronized to the maildir flags, as the commands
128         expect the database and maildir to be in sync.
129
130         Default: ``true``.
131
132     **crypto.gpg_path**
133
134         Name (or full path) of gpg binary to use in verification and
135         decryption of PGP/MIME messages.  NOTE: This configuration
136         item is deprecated, and will be ignored if notmuch is built
137         against GMime 3.0 or later.
138
139         Default: ``gpg``.
140
141     **built_with.<name>**
142
143         Compile time feature <name>. Current possibilities include
144         "compact" (see **notmuch-compact(1)**)
145         and "field_processor" (see **notmuch-search-terms(7)**).
146
147     **query.<name>**
148
149         **[STORED IN DATABASE]**
150         Expansion for named query called <name>. See
151         **notmuch-search-terms(7)** for more information about named
152         queries.
153
154 ENVIRONMENT
155 ===========
156
157 The following environment variables can be used to control the behavior
158 of notmuch.
159
160 **NOTMUCH\_CONFIG**
161     Specifies the location of the notmuch configuration file. Notmuch
162     will use ${HOME}/.notmuch-config if this variable is not set.
163
164 SEE ALSO
165 ========
166
167 **notmuch(1)**,
168 **notmuch-count(1)**,
169 **notmuch-dump(1)**,
170 **notmuch-hooks(5)**,
171 **notmuch-insert(1)**,
172 **notmuch-new(1)**,
173 **notmuch-reply(1)**,
174 **notmuch-restore(1)**,
175 **notmuch-search(1)**,
176 **notmuch-search-terms(7)**,
177 **notmuch-show(1)**,
178 **notmuch-tag(1)**