Compare commits

...

1 Commits

Author SHA1 Message Date
Kerstin Humm 81f0d5ca83 fix sample-config for notmuch backend
This fixes the following error, as `subscribe` is not a boolean type.

> Config file contains errors: invalid type: boolean `true`, expected a
> string for key `accounts.notmuch.mailboxes.INBOX` at line 59 column 11
2021-01-18 09:24:16 +01:00
1 changed files with 3 additions and 3 deletions

View File

@ -56,9 +56,9 @@
#display_name = "Name Name"
# # notmuch mailboxes are virtual, they are defined by their alias and the notmuch query that corresponds to their content.
# [accounts.notmuch.mailboxes]
# "INBOX" = { query="tag:inbox", subscribe = true }
# "Drafts" = { query="tag:draft", subscribe = true }
# "Sent" = { query="from:username@example.com from:username2@example.com", subscribe = true }
# "INBOX" = { query="tag:inbox", subscribe = "true" }
# "Drafts" = { query="tag:draft", subscribe = "true" }
# "Sent" = { query="from:username@example.com from:username2@example.com", subscribe = "true" }
#
## Setting up a Gmail account
#[accounts."gmail"]