1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2009 Carl Worth
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see http://www.gnu.org/licenses/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #include "notmuch-client.h"
27 static const char toplevel_config_comment[] =
28 " .notmuch-config - Configuration file for the notmuch mail system\n"
30 " For more information about notmuch, see http://notmuchmail.org";
32 static const char database_config_comment[] =
33 " Database configuration\n"
35 " The only value supported here is 'path' which should be the top-level\n"
36 " directory where your mail currently exists and to where mail will be\n"
37 " delivered in the future. Files should be individual email messages.\n"
38 " Notmuch will store its database within a sub-directory of the path\n"
39 " configured here named \".notmuch\".\n";
41 static const char new_config_comment[] =
42 " Configuration for \"notmuch new\"\n"
44 " The following options are supported here:\n"
46 "\ttags A list (separated by ';') of the tags that will be\n"
47 "\t added to all messages incorporated by \"notmuch new\".\n"
49 "\tignore A list (separated by ';') of file and directory names\n"
50 "\t that will not be searched for messages by \"notmuch new\".\n"
52 "\t NOTE: *Every* file/directory that goes by one of those\n"
53 "\t names will be ignored, independent of its depth/location\n"
54 "\t in the mail store.\n";
56 static const char user_config_comment[] =
57 " User configuration\n"
59 " Here is where you can let notmuch know how you would like to be\n"
60 " addressed. Valid settings are\n"
62 "\tname Your full name.\n"
63 "\tprimary_email Your primary email address.\n"
64 "\tother_email A list (separated by ';') of other email addresses\n"
65 "\t at which you receive email.\n"
67 " Notmuch will use the various email addresses configured here when\n"
68 " formatting replies. It will avoid including your own addresses in the\n"
69 " recipient list of replies, and will set the From address based on the\n"
70 " address to which the original email was addressed.\n";
72 static const char maildir_config_comment[] =
73 " Maildir compatibility configuration\n"
75 " The following option is supported here:\n"
77 "\tsynchronize_flags Valid values are true and false.\n"
79 "\tIf true, then the following maildir flags (in message filenames)\n"
80 "\twill be synchronized with the corresponding notmuch tags:\n"
88 "\t\tS unread (added when 'S' flag is not present)\n"
90 "\tThe \"notmuch new\" command will notice flag changes in filenames\n"
91 "\tand update tags, while the \"notmuch tag\" and \"notmuch restore\"\n"
92 "\tcommands will notice tag changes and update flags in filenames\n";
94 static const char search_config_comment[] =
95 " Search configuration\n"
97 " The following option is supported here:\n"
100 "\t\tA ;-separated list of tags that will be excluded from\n"
101 "\t\tsearch results by default. Using an excluded tag in a\n"
102 "\t\tquery will override that exclusion.\n";
104 struct _notmuch_config {
107 notmuch_bool_t is_new;
111 char *user_primary_email;
112 const char **user_other_email;
113 size_t user_other_email_length;
114 const char **new_tags;
115 size_t new_tags_length;
116 const char **new_ignore;
117 size_t new_ignore_length;
118 notmuch_bool_t maildir_synchronize_flags;
119 const char **search_exclude_tags;
120 size_t search_exclude_tags_length;
124 notmuch_config_destructor (notmuch_config_t *config)
126 if (config->key_file)
127 g_key_file_free (config->key_file);
133 get_name_from_passwd_file (void *ctx)
137 struct passwd passwd, *ignored;
141 pw_buf_size = sysconf(_SC_GETPW_R_SIZE_MAX);
142 if (pw_buf_size == -1) pw_buf_size = 64;
143 pw_buf = talloc_size (ctx, pw_buf_size);
145 while ((e = getpwuid_r (getuid (), &passwd, pw_buf,
146 pw_buf_size, &ignored)) == ERANGE) {
147 pw_buf_size = pw_buf_size * 2;
148 pw_buf = talloc_zero_size(ctx, pw_buf_size);
152 char *comma = strchr (passwd.pw_gecos, ',');
154 name = talloc_strndup (ctx, passwd.pw_gecos,
155 comma - passwd.pw_gecos);
157 name = talloc_strdup (ctx, passwd.pw_gecos);
159 name = talloc_strdup (ctx, "");
162 talloc_free (pw_buf);
168 get_username_from_passwd_file (void *ctx)
172 struct passwd passwd, *ignored;
176 pw_buf_size = sysconf(_SC_GETPW_R_SIZE_MAX);
177 if (pw_buf_size == -1) pw_buf_size = 64;
178 pw_buf = talloc_zero_size (ctx, pw_buf_size);
180 while ((e = getpwuid_r (getuid (), &passwd, pw_buf,
181 pw_buf_size, &ignored)) == ERANGE) {
182 pw_buf_size = pw_buf_size * 2;
183 pw_buf = talloc_zero_size(ctx, pw_buf_size);
187 name = talloc_strdup (ctx, passwd.pw_name);
189 name = talloc_strdup (ctx, "");
191 talloc_free (pw_buf);
196 /* Open the named notmuch configuration file. If the filename is NULL,
197 * the value of the environment variable $NOTMUCH_CONFIG will be used.
198 * If $NOTMUCH_CONFIG is unset, the default configuration file
199 * ($HOME/.notmuch-config) will be used.
201 * If any error occurs, (out of memory, or a permission-denied error,
202 * etc.), this function will print a message to stderr and return
205 * FILE NOT FOUND: When the specified configuration file (whether from
206 * 'filename' or the $NOTMUCH_CONFIG environment variable) does not
207 * exist, the behavior of this function depends on the 'is_new_ret'
210 * If is_new_ret is NULL, then a "file not found" message will be
211 * printed to stderr and NULL will be returned.
213 * If is_new_ret is non-NULL then a default configuration will be
214 * returned and *is_new_ret will be set to 1 on return so that
215 * the caller can recognize this case.
217 * These default configuration settings are determined as
220 * database_path: $HOME/mail
222 * user_name: From /etc/passwd
224 * user_primary_mail: $EMAIL variable if set, otherwise
225 * constructed from the username and
226 * hostname of the current machine.
228 * user_other_email: Not set.
230 * The default configuration also contains comments to guide the
231 * user in editing the file directly.
234 notmuch_config_open (void *ctx,
235 const char *filename,
236 notmuch_bool_t create_new)
238 GError *error = NULL;
240 char *notmuch_config_env = NULL;
241 int file_had_database_group;
242 int file_had_new_group;
243 int file_had_user_group;
244 int file_had_maildir_group;
245 int file_had_search_group;
247 notmuch_config_t *config = talloc (ctx, notmuch_config_t);
248 if (config == NULL) {
249 fprintf (stderr, "Out of memory.\n");
253 talloc_set_destructor (config, notmuch_config_destructor);
256 config->filename = talloc_strdup (config, filename);
257 } else if ((notmuch_config_env = getenv ("NOTMUCH_CONFIG"))) {
258 config->filename = talloc_strdup (config, notmuch_config_env);
260 config->filename = talloc_asprintf (config, "%s/.notmuch-config",
264 config->key_file = g_key_file_new ();
266 config->is_new = FALSE;
267 config->database_path = NULL;
268 config->user_name = NULL;
269 config->user_primary_email = NULL;
270 config->user_other_email = NULL;
271 config->user_other_email_length = 0;
272 config->new_tags = NULL;
273 config->new_tags_length = 0;
274 config->new_ignore = NULL;
275 config->new_ignore_length = 0;
276 config->maildir_synchronize_flags = TRUE;
277 config->search_exclude_tags = NULL;
278 config->search_exclude_tags_length = 0;
280 if (! g_key_file_load_from_file (config->key_file,
282 G_KEY_FILE_KEEP_COMMENTS,
285 /* If create_new is true, then the caller is prepared for a
286 * default configuration file in the case of FILE NOT
287 * FOUND. Otherwise, any read failure is an error.
290 error->domain == G_FILE_ERROR &&
291 error->code == G_FILE_ERROR_NOENT)
293 g_error_free (error);
294 config->is_new = TRUE;
298 fprintf (stderr, "Error reading configuration file %s: %s\n",
299 config->filename, error->message);
300 talloc_free (config);
301 g_error_free (error);
306 /* Whenever we know of configuration sections that don't appear in
307 * the configuration file, we add some comments to help the user
308 * understand what can be done.
310 * It would be convenient to just add those comments now, but
311 * apparently g_key_file will clear any comments when keys are
312 * added later that create the groups. So we have to check for the
313 * groups now, but add the comments only after setting all of our
316 file_had_database_group = g_key_file_has_group (config->key_file,
318 file_had_new_group = g_key_file_has_group (config->key_file, "new");
319 file_had_user_group = g_key_file_has_group (config->key_file, "user");
320 file_had_maildir_group = g_key_file_has_group (config->key_file, "maildir");
321 file_had_search_group = g_key_file_has_group (config->key_file, "search");
324 if (notmuch_config_get_database_path (config) == NULL) {
325 char *path = talloc_asprintf (config, "%s/mail",
327 notmuch_config_set_database_path (config, path);
331 if (notmuch_config_get_user_name (config) == NULL) {
332 char *name = get_name_from_passwd_file (config);
333 notmuch_config_set_user_name (config, name);
337 if (notmuch_config_get_user_primary_email (config) == NULL) {
338 char *email = getenv ("EMAIL");
340 notmuch_config_set_user_primary_email (config, email);
343 struct hostent *hostent;
344 const char *domainname;
346 char *username = get_username_from_passwd_file (config);
348 gethostname (hostname, 256);
349 hostname[255] = '\0';
351 hostent = gethostbyname (hostname);
352 if (hostent && (domainname = strchr (hostent->h_name, '.')))
355 domainname = "(none)";
357 email = talloc_asprintf (config, "%s@%s.%s",
358 username, hostname, domainname);
360 notmuch_config_set_user_primary_email (config, email);
362 talloc_free (username);
367 if (notmuch_config_get_new_tags (config, &tmp) == NULL) {
368 const char *tags[] = { "unread", "inbox" };
369 notmuch_config_set_new_tags (config, tags, 2);
372 if (notmuch_config_get_new_ignore (config, &tmp) == NULL) {
373 notmuch_config_set_new_ignore (config, NULL, 0);
376 if (notmuch_config_get_search_exclude_tags (config, &tmp) == NULL) {
377 if (config->is_new) {
378 const char *tags[] = { "deleted", "spam" };
379 notmuch_config_set_search_exclude_tags (config, tags, 2);
381 notmuch_config_set_search_exclude_tags (config, NULL, 0);
386 config->maildir_synchronize_flags =
387 g_key_file_get_boolean (config->key_file,
388 "maildir", "synchronize_flags", &error);
390 notmuch_config_set_maildir_synchronize_flags (config, TRUE);
391 g_error_free (error);
394 /* Whenever we know of configuration sections that don't appear in
395 * the configuration file, we add some comments to help the user
396 * understand what can be done. */
399 g_key_file_set_comment (config->key_file, NULL, NULL,
400 toplevel_config_comment, NULL);
403 if (! file_had_database_group)
405 g_key_file_set_comment (config->key_file, "database", NULL,
406 database_config_comment, NULL);
409 if (! file_had_new_group)
411 g_key_file_set_comment (config->key_file, "new", NULL,
412 new_config_comment, NULL);
415 if (! file_had_user_group)
417 g_key_file_set_comment (config->key_file, "user", NULL,
418 user_config_comment, NULL);
421 if (! file_had_maildir_group)
423 g_key_file_set_comment (config->key_file, "maildir", NULL,
424 maildir_config_comment, NULL);
427 if (! file_had_search_group) {
428 g_key_file_set_comment (config->key_file, "search", NULL,
429 search_config_comment, NULL);
435 /* Close the given notmuch_config_t object, freeing all resources.
437 * Note: Any changes made to the configuration are *not* saved by this
438 * function. To save changes, call notmuch_config_save before
439 * notmuch_config_close.
442 notmuch_config_close (notmuch_config_t *config)
444 talloc_free (config);
447 /* Save any changes made to the notmuch configuration.
449 * Any comments originally in the file will be preserved.
451 * Returns 0 if successful, and 1 in case of any error, (after
452 * printing a description of the error to stderr).
455 notmuch_config_save (notmuch_config_t *config)
459 GError *error = NULL;
461 data = g_key_file_to_data (config->key_file, &length, NULL);
463 fprintf (stderr, "Out of memory.\n");
467 if (! g_file_set_contents (config->filename, data, length, &error)) {
468 fprintf (stderr, "Error saving configuration to %s: %s\n",
469 config->filename, error->message);
470 g_error_free (error);
480 notmuch_config_is_new (notmuch_config_t *config)
482 return config->is_new;
487 _config_get_list (notmuch_config_t *config,
488 const char *section, const char *key,
489 const char ***outlist, size_t *list_length, size_t *ret_length)
493 if (*outlist == NULL) {
495 char **inlist = g_key_file_get_string_list (config->key_file,
496 section, key, list_length, NULL);
500 *outlist = talloc_size (config, sizeof (char *) * (*list_length + 1));
502 for (i = 0; i < *list_length; i++)
503 (*outlist)[i] = talloc_strdup (*outlist, inlist[i]);
505 (*outlist)[i] = NULL;
512 *ret_length = *list_length;
518 _config_set_list (notmuch_config_t *config,
519 const char *group, const char *name,
521 size_t length, const char ***config_var )
523 g_key_file_set_string_list (config->key_file, group, name, list, length);
524 talloc_free (*config_var);
529 notmuch_config_get_database_path (notmuch_config_t *config)
533 if (config->database_path == NULL) {
534 path = g_key_file_get_string (config->key_file,
535 "database", "path", NULL);
537 config->database_path = talloc_strdup (config, path);
542 return config->database_path;
546 notmuch_config_set_database_path (notmuch_config_t *config,
547 const char *database_path)
549 g_key_file_set_string (config->key_file,
550 "database", "path", database_path);
552 talloc_free (config->database_path);
553 config->database_path = NULL;
557 notmuch_config_get_user_name (notmuch_config_t *config)
561 if (config->user_name == NULL) {
562 name = g_key_file_get_string (config->key_file,
563 "user", "name", NULL);
565 config->user_name = talloc_strdup (config, name);
570 return config->user_name;
574 notmuch_config_set_user_name (notmuch_config_t *config,
575 const char *user_name)
577 g_key_file_set_string (config->key_file,
578 "user", "name", user_name);
580 talloc_free (config->user_name);
581 config->user_name = NULL;
585 notmuch_config_get_user_primary_email (notmuch_config_t *config)
589 if (config->user_primary_email == NULL) {
590 email = g_key_file_get_string (config->key_file,
591 "user", "primary_email", NULL);
593 config->user_primary_email = talloc_strdup (config, email);
598 return config->user_primary_email;
602 notmuch_config_set_user_primary_email (notmuch_config_t *config,
603 const char *primary_email)
605 g_key_file_set_string (config->key_file,
606 "user", "primary_email", primary_email);
608 talloc_free (config->user_primary_email);
609 config->user_primary_email = NULL;
613 notmuch_config_get_user_other_email (notmuch_config_t *config, size_t *length)
615 return _config_get_list (config, "user", "other_email",
616 &(config->user_other_email),
617 &(config->user_other_email_length), length);
621 notmuch_config_get_new_tags (notmuch_config_t *config, size_t *length)
623 return _config_get_list (config, "new", "tags",
625 &(config->new_tags_length), length);
629 notmuch_config_get_new_ignore (notmuch_config_t *config, size_t *length)
631 return _config_get_list (config, "new", "ignore",
632 &(config->new_ignore),
633 &(config->new_ignore_length), length);
637 notmuch_config_set_user_other_email (notmuch_config_t *config,
641 _config_set_list (config, "user", "other_email", list, length,
642 &(config->user_other_email));
646 notmuch_config_set_new_tags (notmuch_config_t *config,
650 _config_set_list (config, "new", "tags", list, length,
651 &(config->new_tags));
655 notmuch_config_set_new_ignore (notmuch_config_t *config,
659 _config_set_list (config, "new", "ignore", list, length,
660 &(config->new_ignore));
664 notmuch_config_get_search_exclude_tags (notmuch_config_t *config, size_t *length)
666 return _config_get_list (config, "search", "exclude_tags",
667 &(config->search_exclude_tags),
668 &(config->search_exclude_tags_length), length);
672 notmuch_config_set_search_exclude_tags (notmuch_config_t *config,
676 _config_set_list (config, "search", "exclude_tags", list, length,
677 &(config->search_exclude_tags));
680 /* Given a configuration item of the form <group>.<key> return the
681 * component group and key. If any error occurs, print a message on
682 * stderr and return 1. Otherwise, return 0.
684 * Note: This function modifies the original 'item' string.
687 _item_split (char *item, char **group, char **key)
693 period = index (item, '.');
694 if (period == NULL || *(period+1) == '\0') {
696 "Invalid configuration name: %s\n"
697 "(Should be of the form <section>.<item>)\n", item);
708 notmuch_config_command_get (notmuch_config_t *config, char *item)
710 if (strcmp(item, "database.path") == 0) {
711 printf ("%s\n", notmuch_config_get_database_path (config));
712 } else if (strcmp(item, "user.name") == 0) {
713 printf ("%s\n", notmuch_config_get_user_name (config));
714 } else if (strcmp(item, "user.primary_email") == 0) {
715 printf ("%s\n", notmuch_config_get_user_primary_email (config));
716 } else if (strcmp(item, "user.other_email") == 0) {
717 const char **other_email;
720 other_email = notmuch_config_get_user_other_email (config, &length);
721 for (i = 0; i < length; i++)
722 printf ("%s\n", other_email[i]);
723 } else if (strcmp(item, "new.tags") == 0) {
727 tags = notmuch_config_get_new_tags (config, &length);
728 for (i = 0; i < length; i++)
729 printf ("%s\n", tags[i]);
735 if (_item_split (item, &group, &key))
738 value = g_key_file_get_string_list (config->key_file,
742 fprintf (stderr, "Unknown configuration item: %s.%s\n",
747 for (i = 0; i < length; i++)
748 printf ("%s\n", value[i]);
757 notmuch_config_command_set (notmuch_config_t *config, char *item, int argc, char *argv[])
761 if (_item_split (item, &group, &key))
764 /* With only the name of an item, we clear it from the
765 * configuration file.
767 * With a single value, we set it as a string.
769 * With multiple values, we set them as a string list.
773 g_key_file_remove_key (config->key_file, group, key, NULL);
776 g_key_file_set_string (config->key_file, group, key, argv[0]);
779 g_key_file_set_string_list (config->key_file, group, key,
780 (const gchar **) argv, argc);
784 return notmuch_config_save (config);
788 notmuch_config_command_list (notmuch_config_t *config)
791 size_t g, groups_length;
793 groups = g_key_file_get_groups (config->key_file, &groups_length);
797 for (g = 0; g < groups_length; g++) {
799 size_t k, keys_length;
801 keys = g_key_file_get_keys (config->key_file,
802 groups[g], &keys_length, NULL);
806 for (k = 0; k < keys_length; k++) {
809 value = g_key_file_get_string (config->key_file,
810 groups[g], keys[k], NULL);
812 printf ("%s.%s=%s\n", groups[g], keys[k], value);
826 notmuch_config_command (notmuch_config_t *config, int argc, char *argv[])
828 argc--; argv++; /* skip subcommand argument */
831 fprintf (stderr, "Error: notmuch config requires at least one argument.\n");
835 if (strcmp (argv[0], "get") == 0) {
837 fprintf (stderr, "Error: notmuch config get requires exactly "
841 return notmuch_config_command_get (config, argv[1]);
842 } else if (strcmp (argv[0], "set") == 0) {
844 fprintf (stderr, "Error: notmuch config set requires at least "
848 return notmuch_config_command_set (config, argv[1], argc - 2, argv + 2);
849 } else if (strcmp (argv[0], "list") == 0) {
850 return notmuch_config_command_list (config);
853 fprintf (stderr, "Unrecognized argument for notmuch config: %s\n",
859 notmuch_config_get_maildir_synchronize_flags (notmuch_config_t *config)
861 return config->maildir_synchronize_flags;
865 notmuch_config_set_maildir_synchronize_flags (notmuch_config_t *config,
866 notmuch_bool_t synchronize_flags)
868 g_key_file_set_boolean (config->key_file,
869 "maildir", "synchronize_flags", synchronize_flags);
870 config->maildir_synchronize_flags = synchronize_flags;