diff options
Diffstat (limited to 'notmuch/config')
-rw-r--r-- | notmuch/config | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/notmuch/config b/notmuch/config deleted file mode 100644 index be90ebc..0000000 --- a/notmuch/config +++ /dev/null | |||
@@ -1,103 +0,0 @@ | |||
1 | # .notmuch-config - Configuration file for the notmuch mail system | ||
2 | # | ||
3 | # For more information about notmuch, see https://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/case/var/mail | ||
15 | hook_dir=/home/case/etc/notmuch/default/hooks | ||
16 | |||
17 | # User configuration | ||
18 | # | ||
19 | # Here is where you can let notmuch know how you would like to be | ||
20 | # addressed. Valid settings are | ||
21 | # | ||
22 | # name Your full name. | ||
23 | # primary_email Your primary email address. | ||
24 | # other_email A list (separated by ';') of other email addresses | ||
25 | # at which you receive email. | ||
26 | # | ||
27 | # Notmuch will use the various email addresses configured here when | ||
28 | # formatting replies. It will avoid including your own addresses in the | ||
29 | # recipient list of replies, and will set the From address based on the | ||
30 | # address to which the original email was addressed. | ||
31 | # | ||
32 | [user] | ||
33 | name=Case Duckworth | ||
34 | primary_email=case@acdw.net | ||
35 | other_email=acdw@fastmail.com;acdw@acdw.net;breadpunk@acdw.net;caseandrachel19@acdw.net;caseduckworth@acdw.net;comments@acdw.net;lists@acdw.net;me@acdw.net;pam@acdw.net;ring@acdw.net;sonn-it@acdw.net;webring@acdw.net;caseduckworth@fastmail.com;loosepoops@fea.st;case@clickheredigital.com;case@thebryc.org;case.duckworth@papertutors.co | ||
36 | |||
37 | # Configuration for "notmuch new" | ||
38 | # | ||
39 | # The following options are supported here: | ||
40 | # | ||
41 | # tags A list (separated by ';') of the tags that will be | ||
42 | # added to all messages incorporated by "notmuch new". | ||
43 | # | ||
44 | # ignore A list (separated by ';') of file and directory names | ||
45 | # that will not be searched for messages by "notmuch new". | ||
46 | # | ||
47 | # NOTE: *Every* file/directory that goes by one of those | ||
48 | # names will be ignored, independent of its depth/location | ||
49 | # in the mail store. | ||
50 | # | ||
51 | [new] | ||
52 | tags=inbox;unread; | ||
53 | ignore=.mbsyncstate;.isyncuidmap.db;.uidvalidity;/.*[.](json|lock|bak|journal|new|drafts)$/; | ||
54 | |||
55 | # Search configuration | ||
56 | # | ||
57 | # The following option is supported here: | ||
58 | # | ||
59 | # exclude_tags | ||
60 | # A ;-separated list of tags that will be excluded from | ||
61 | # search results by default. Using an excluded tag in a | ||
62 | # query will override that exclusion. | ||
63 | # | ||
64 | [search] | ||
65 | exclude_tags=deleted;spam;Spam;Trash;sent | ||
66 | |||
67 | # Show configuration | ||
68 | [show] | ||
69 | extra_headers=List-Post; | ||
70 | |||
71 | # Maildir compatibility configuration | ||
72 | # | ||
73 | # The following option is supported here: | ||
74 | # | ||
75 | # synchronize_flags Valid values are true and false. | ||
76 | # | ||
77 | # If true, then the following maildir flags (in message filenames) | ||
78 | # will be synchronized with the corresponding notmuch tags: | ||
79 | # | ||
80 | # Flag Tag | ||
81 | # ---- ------- | ||
82 | # D draft | ||
83 | # F flagged | ||
84 | # P passed | ||
85 | # R replied | ||
86 | # S unread (added when 'S' flag is not present) | ||
87 | # | ||
88 | # The "notmuch new" command will notice flag changes in filenames | ||
89 | # and update tags, while the "notmuch tag" and "notmuch restore" | ||
90 | # commands will notice tag changes and update flags in filenames | ||
91 | # | ||
92 | [maildir] | ||
93 | synchronize_flags=true | ||
94 | |||
95 | # Cryptography related configuration | ||
96 | # | ||
97 | # The following option is supported here: | ||
98 | # | ||
99 | # gpg_path | ||
100 | # binary name or full path to invoke gpg. | ||
101 | # | ||
102 | [crypto] | ||
103 | gpg_path=gpg | ||