aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-client.h
diff options
context:
space:
mode:
authorGravatar Ben Gamari <bgamari.foss@gmail.com>2010-03-12 17:13:26 -0500
committerGravatar Carl Worth <cworth@cworth.org>2010-04-23 08:41:59 -0700
commit143d43687410aefec7988e2d785a63c60c6062b5 (patch)
tree2556a5ed4281da0250c6b1e4897c875146e8ce26 /notmuch-client.h
parentaf8664689ac66b2ee79c904c6483f1172768da39 (diff)
notmuch-config: make new message tags configurable
Add a new_tags option in the [messages] section of the configuration file to allow the user to specify which tags should be added to new messages by notmuch new.
Diffstat (limited to 'notmuch-client.h')
-rw-r--r--notmuch-client.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/notmuch-client.h b/notmuch-client.h
index d36b9ec1..bd75211e 100644
--- a/notmuch-client.h
+++ b/notmuch-client.h
@@ -183,6 +183,14 @@ notmuch_config_set_user_other_email (notmuch_config_t *config,
const char *other_email[],
size_t length);
+char **
+notmuch_config_get_new_tags (notmuch_config_t *config,
+ size_t *length);
+void
+notmuch_config_set_new_tags (notmuch_config_t *config,
+ const char *new_tags[],
+ size_t length);
+
notmuch_bool_t
debugger_is_active (void);