aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-config.c
diff options
context:
space:
mode:
authorGravatar Austin Clements <amdragon@MIT.EDU>2012-01-14 19:17:34 -0500
committerGravatar David Bremner <bremner@debian.org>2012-01-16 21:06:35 -0400
commit42a907992823030f070fc395a174f779998ca6f5 (patch)
treeae5024f696448426b6fadd76df888cc1421215ad /notmuch-config.c
parent3b76adf9e2c026dd03b820f4c6eab50e25444113 (diff)
search: Support automatic tag exclusions
This adds a "search" section to the config file and an "auto_tag_exclusions" setting in that section. The search and count commands pass tag tags from the configuration to the library.
Diffstat (limited to 'notmuch-config.c')
-rw-r--r--notmuch-config.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/notmuch-config.c b/notmuch-config.c
index d697138a..3d4d5b9f 100644
--- a/notmuch-config.c
+++ b/notmuch-config.c
@@ -84,6 +84,15 @@ static const char maildir_config_comment[] =
"\tand update tags, while the \"notmuch tag\" and \"notmuch restore\"\n"
"\tcommands will notice tag changes and update flags in filenames\n";
+static const char search_config_comment[] =
+ " Search configuration\n"
+ "\n"
+ " The following option is supported here:\n"
+ "\n"
+ "\tauto_exclude_tags A ;-separated list of tags that will be\n"
+ "\t excluded from search results by default. Using an excluded tag\n"
+ "\t in a query will override that exclusion.\n";
+
struct _notmuch_config {
char *filename;
GKeyFile *key_file;
@@ -96,6 +105,8 @@ struct _notmuch_config {
const char **new_tags;
size_t new_tags_length;
notmuch_bool_t maildir_synchronize_flags;
+ const char **auto_exclude_tags;
+ size_t auto_exclude_tags_length;
};
static int
@@ -221,6 +232,7 @@ notmuch_config_open (void *ctx,
int file_had_new_group;
int file_had_user_group;
int file_had_maildir_group;
+ int file_had_search_group;
if (is_new_ret)
*is_new_ret = 0;
@@ -252,6 +264,8 @@ notmuch_config_open (void *ctx,
config->new_tags = NULL;
config->new_tags_length = 0;
config->maildir_synchronize_flags = TRUE;
+ config->auto_exclude_tags = NULL;
+ config->auto_exclude_tags_length = 0;
if (! g_key_file_load_from_file (config->key_file,
config->filename,
@@ -295,6 +309,7 @@ notmuch_config_open (void *ctx,
file_had_new_group = g_key_file_has_group (config->key_file, "new");
file_had_user_group = g_key_file_has_group (config->key_file, "user");
file_had_maildir_group = g_key_file_has_group (config->key_file, "maildir");
+ file_had_search_group = g_key_file_has_group (config->key_file, "search");
if (notmuch_config_get_database_path (config) == NULL) {
@@ -345,6 +360,11 @@ notmuch_config_open (void *ctx,
notmuch_config_set_new_tags (config, tags, 2);
}
+ if (notmuch_config_get_auto_exclude_tags (config, &tmp) == NULL) {
+ const char *tags[] = { "deleted", "spam" };
+ notmuch_config_set_auto_exclude_tags (config, tags, 2);
+ }
+
error = NULL;
config->maildir_synchronize_flags =
g_key_file_get_boolean (config->key_file,
@@ -387,6 +407,11 @@ notmuch_config_open (void *ctx,
maildir_config_comment, NULL);
}
+ if (! file_had_search_group) {
+ g_key_file_set_comment (config->key_file, "search", NULL,
+ search_config_comment, NULL);
+ }
+
if (is_new_ret)
*is_new_ret = is_new;
@@ -597,6 +622,23 @@ notmuch_config_set_new_tags (notmuch_config_t *config,
&(config->new_tags));
}
+const char **
+notmuch_config_get_auto_exclude_tags (notmuch_config_t *config, size_t *length)
+{
+ return _config_get_list (config, "search", "auto_exclude_tags",
+ &(config->auto_exclude_tags),
+ &(config->auto_exclude_tags_length), length);
+}
+
+void
+notmuch_config_set_auto_exclude_tags (notmuch_config_t *config,
+ const char *list[],
+ size_t length)
+{
+ _config_set_list (config, "search", "auto_exclude_tags", list, length,
+ &(config->auto_exclude_tags));
+}
+
/* Given a configuration item of the form <group>.<key> return the
* component group and key. If any error occurs, print a message on
* stderr and return 1. Otherwise, return 0.