passeval
[dotfiles.git] / .notmuch-config
1 # .notmuch-config - Configuration file for the notmuch mail system
2 #
3 # For more information about notmuch, see http://notmuchmail.org
4
5 # Database configuration
6 #
7 # The only value supported here is 'path' which should be the top-level
8 # directory where your mail currently exists and to where mail will be
9 # delivered in the future. Files should be individual email messages.
10 # Notmuch will store its database within a sub-directory of the path
11 # configured here named ".notmuch".
12 #
13 [database]
14 path=/home/mart/.mutt/mail
15
16 # User configuration
17 #
18 # Here is where you can let notmuch know how you would like to be
19 # addressed. Valid settings are
20 #
21 # name Your full name.
22 # primary_email Your primary email address.
23 # other_email A list (separated by ';') of other email addresses
24 # at which you receive email.
25 #
26 # Notmuch will use the various email addresses configured here when
27 # formatting replies. It will avoid including your own addresses in the
28 # recipient list of replies, and will set the From address based on the
29 # address to which the original email was addressed.
30 #
31 [user]
32 name=Mart Lubbers
33 primary_email=mart@martlubbers.net
34
35 # Configuration for "notmuch new"
36 #
37 # The following options are supported here:
38 #
39 # tags A list (separated by ';') of the tags that will be
40 # added to all messages incorporated by "notmuch new".
41 #
42 # ignore A list (separated by ';') of file and directory names
43 # that will not be searched for messages by "notmuch new".
44 #
45 # NOTE: *Every* file/directory that goes by one of those names will
46 # be ignored, independent of its depth/location in the mail store.
47 #
48 [new]
49 tags=unread;inbox;
50 ignore=
51
52 # Search configuration
53 #
54 # The following option is supported here:
55 #
56 # exclude_tags
57 # A ;-separated list of tags that will be excluded from
58 # search results by default. Using an excluded tag in a
59 # query will override that exclusion.
60 #
61 [search]
62 exclude_tags=deleted;spam;
63
64 # Maildir compatibility configuration
65 #
66 # The following option is supported here:
67 #
68 # synchronize_flags Valid values are true and false.
69 #
70 # If true, then the following maildir flags (in message filenames)
71 # will be synchronized with the corresponding notmuch tags:
72 #
73 # Flag Tag
74 # ---- -------
75 # D draft
76 # F flagged
77 # P passed
78 # R replied
79 # S unread (added when 'S' flag is not present)
80 #
81 # The "notmuch new" command will notice flag changes in filenames
82 # and update tags, while the "notmuch tag" and "notmuch restore"
83 # commands will notice tag changes and update flags in filenames
84 #
85 [maildir]
86 synchronize_flags=true