mu/mu/mu-config.c

697 lines
19 KiB
C
Raw Normal View History

/* -*-Mode: c; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-*/
2011-08-11 19:20:22 +02:00
/*
** Copyright (C) 2008-2012 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License as published by the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software Foundation,
** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif /*HAVE_CONFIG_H*/
#include <glib.h>
2010-12-07 22:17:05 +01:00
#include <string.h> /* memset */
#include <unistd.h>
#include <stdio.h>
#include "mu-util.h"
#include "mu-config.h"
2011-01-04 22:19:03 +01:00
#include "mu-cmd.h"
static MuConfig MU_CONFIG;
static MuConfigFormat
get_output_format (const char *formatstr)
{
int i;
struct {
const char* name;
MuConfigFormat format;
} formats [] = {
{"mutt-alias", MU_CONFIG_FORMAT_MUTT_ALIAS},
{"mutt-ab", MU_CONFIG_FORMAT_MUTT_AB},
{"wl", MU_CONFIG_FORMAT_WL},
{"csv", MU_CONFIG_FORMAT_CSV},
{"org-contact", MU_CONFIG_FORMAT_ORG_CONTACT},
{"bbdb", MU_CONFIG_FORMAT_BBDB},
{"links", MU_CONFIG_FORMAT_LINKS},
{"plain", MU_CONFIG_FORMAT_PLAIN},
{"sexp", MU_CONFIG_FORMAT_SEXP},
{"xml", MU_CONFIG_FORMAT_XML},
{"xquery", MU_CONFIG_FORMAT_XQUERY}
};
for (i = 0; i != G_N_ELEMENTS(formats); i++)
if (strcmp (formats[i].name, formatstr) == 0)
return formats[i].format;
return MU_CONFIG_FORMAT_UNKNOWN;
}
2011-01-02 13:59:03 +01:00
static void
set_group_mu_defaults (void)
{
gchar *exp;
if (!MU_CONFIG.muhome)
MU_CONFIG.muhome = mu_util_guess_mu_homedir();
exp = mu_util_dir_expand(MU_CONFIG.muhome);
if (exp) {
g_free(MU_CONFIG.muhome);
MU_CONFIG.muhome = exp;
}
/* check for the MU_NOCOLOR env var; but in any case don't
* use colors unless we're writing to a tty */
if (g_getenv (MU_NOCOLOR) != NULL)
MU_CONFIG.nocolor = TRUE;
if (!isatty(fileno(stdout)))
MU_CONFIG.nocolor = TRUE;
}
2011-01-02 13:59:03 +01:00
static GOptionGroup*
config_options_group_mu (void)
2010-12-07 22:17:05 +01:00
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"debug", 'd', 0, G_OPTION_ARG_NONE, &MU_CONFIG.debug,
"print debug output to standard error (false)", NULL},
{"quiet", 'q', 0, G_OPTION_ARG_NONE, &MU_CONFIG.quiet,
"don't give any progress information (false)", NULL},
{"version", 'v', 0, G_OPTION_ARG_NONE, &MU_CONFIG.version,
"display version and copyright information (false)", NULL},
{"muhome", 0, 0, G_OPTION_ARG_FILENAME, &MU_CONFIG.muhome,
"specify an alternative mu directory", NULL},
{"log-stderr", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.log_stderr,
"log to standard error (false)", NULL},
{"nocolor", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.nocolor,
"don't use ANSI-colors in some output (false)", NULL},
{"verbose", 'v', 0, G_OPTION_ARG_NONE, &MU_CONFIG.verbose,
"verbose output (false)", NULL},
{G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY,
&MU_CONFIG.params, "parameters", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("mu", "general mu options", "", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
2010-12-07 22:17:05 +01:00
}
2011-01-02 13:59:03 +01:00
static void
set_group_index_defaults (void)
{
char *exp;
if (!MU_CONFIG.maildir)
MU_CONFIG.maildir = mu_util_guess_maildir ();
if (MU_CONFIG.maildir) {
exp = mu_util_dir_expand(MU_CONFIG.maildir);
if (exp) {
g_free(MU_CONFIG.maildir);
MU_CONFIG.maildir = exp;
}
}
}
2011-01-02 13:59:03 +01:00
static GOptionGroup*
config_options_group_index (void)
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"maildir", 'm', 0, G_OPTION_ARG_FILENAME, &MU_CONFIG.maildir,
"top of the maildir", NULL},
{"reindex", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.reindex,
"index even already indexed messages (false)", NULL},
{"rebuild", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.rebuild,
"rebuild the database from scratch (false)", NULL},
{"my-address", 0, 0, G_OPTION_ARG_STRING_ARRAY,&MU_CONFIG.my_addresses,
"my e-mail address (regexp); can be used multiple times", NULL},
{"autoupgrade", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.autoupgrade,
"auto-upgrade the database with new mu versions (false)", NULL},
{"nocleanup", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.nocleanup,
"don't clean up the database after indexing (false)", NULL},
{"xbatchsize", 0, 0, G_OPTION_ARG_INT, &MU_CONFIG.xbatchsize,
"set transaction batchsize for xapian commits (0)", NULL},
{"max-msg-size", 0, 0, G_OPTION_ARG_INT, &MU_CONFIG.max_msg_size,
"set the maximum size for message files", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("index",
"options for the 'index' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
2011-01-02 13:59:03 +01:00
static void
set_group_find_defaults (void)
{
/* note, when no fields are specified, we use
* date-from-subject, and sort descending by date. If fields
* *are* specified, we sort in ascending order. */
if (!MU_CONFIG.fields) {
MU_CONFIG.fields = "d f s";
if (!MU_CONFIG.sortfield)
MU_CONFIG.sortfield = "d";
}
if (!MU_CONFIG.formatstr) /* by default, use plain output */
MU_CONFIG.format = MU_CONFIG_FORMAT_PLAIN;
else
MU_CONFIG.format =
get_output_format (MU_CONFIG.formatstr);
}
2011-01-02 13:59:03 +01:00
static GOptionGroup*
config_options_group_find (void)
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"fields", 'f', 0, G_OPTION_ARG_STRING, &MU_CONFIG.fields,
"fields to display in the output", NULL},
{"sortfield", 's', 0, G_OPTION_ARG_STRING, &MU_CONFIG.sortfield,
"field to sort on", NULL},
{"threads", 't', 0, G_OPTION_ARG_NONE, &MU_CONFIG.threads,
"show message threads", NULL},
{"bookmark", 'b', 0, G_OPTION_ARG_STRING, &MU_CONFIG.bookmark,
"use a bookmarked query", NULL},
{"reverse", 'z', 0, G_OPTION_ARG_NONE, &MU_CONFIG.reverse,
"sort in reverse (descending) order (z -> a)", NULL},
/* {"summary", 'k', 0, G_OPTION_ARG_NONE, &MU_CONFIG.summary, */
/* "(deprecated; use --summary-len)", NULL}, */
{"summary-len", 0, 0, G_OPTION_ARG_INT, &MU_CONFIG.summary_len,
"use up to <n> lines for the summary (5)", NULL},
{"linksdir", 0, 0, G_OPTION_ARG_STRING, &MU_CONFIG.linksdir,
"output as symbolic links to a target maildir", NULL},
{"clearlinks", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.clearlinks,
"clear old links before filling a linksdir (false)", NULL},
{"format", 'o', 0, G_OPTION_ARG_STRING, &MU_CONFIG.formatstr,
"output format ('plain'(*), 'links', 'xml',"
"'sexp', 'xquery')", NULL},
{"exec", 'e', 0, G_OPTION_ARG_STRING, &MU_CONFIG.exec,
"execute command on each match message", NULL},
{"after", 0, 0, G_OPTION_ARG_INT, &MU_CONFIG.after,
"only show messages whose m_time > T (t_time)", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("find",
"options for the 'find' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
2011-01-02 13:59:03 +01:00
static GOptionGroup *
config_options_group_mkdir (void)
2010-12-07 22:17:05 +01:00
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"mode", 0, 0, G_OPTION_ARG_INT, &MU_CONFIG.dirmode,
"set the mode (as in chmod), in octal notation", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
2010-12-07 22:17:05 +01:00
/* set dirmode before, because '0000' is a valid mode */
MU_CONFIG.dirmode = 0755;
2010-12-07 22:17:05 +01:00
og = g_option_group_new("mkdir", "options for the 'mkdir' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
2010-12-07 22:17:05 +01:00
return og;
2010-12-07 22:17:05 +01:00
}
static void
set_group_cfind_defaults (void)
{
if (!MU_CONFIG.formatstr) /* by default, use plain output */
MU_CONFIG.format = MU_CONFIG_FORMAT_PLAIN;
else
MU_CONFIG.format = get_output_format (MU_CONFIG.formatstr);
}
static GOptionGroup *
config_options_group_cfind (void)
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"format", 'o', 0, G_OPTION_ARG_STRING, &MU_CONFIG.formatstr,
"output format ('plain'(*), 'mutt', 'wanderlust',"
"'org-contact', 'csv')", NULL},
{"personal", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.personal,
"whether to only get 'personal' contacts", NULL},
{"after", 0, 0, G_OPTION_ARG_INT, &MU_CONFIG.after,
"only get addresses last seen after T", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("cfind", "options for the 'cfind' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
static void
set_group_view_defaults (void)
{
if (!MU_CONFIG.formatstr) /* by default, use plain output */
MU_CONFIG.format = MU_CONFIG_FORMAT_PLAIN;
else
MU_CONFIG.format = get_output_format (MU_CONFIG.formatstr);
}
static GOptionGroup *
config_options_group_view (void)
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"summary", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.summary,
"(deprecated; use --summary-len)", NULL},
/* {"summary-len", 0, 0, G_OPTION_ARG_INT, &MU_CONFIG.summary_len, */
/* "use up to <n> lines for the summary (5)", NULL}, */
{"terminate", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.terminator,
"terminate messages with ascii-0x07 (\\f, form-feed)", NULL},
{"format", 'o', 0, G_OPTION_ARG_STRING, &MU_CONFIG.formatstr,
"output format ('plain'(*), 'sexp')", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("view", "options for the 'view' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
2011-01-02 13:59:03 +01:00
static GOptionGroup*
config_options_group_extract (void)
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"save-attachments", 'a', 0, G_OPTION_ARG_NONE,
&MU_CONFIG.save_attachments,
"save all attachments (false)", NULL},
{"save-all", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.save_all,
"save all parts (incl. non-attachments) (false)", NULL},
{"parts", 0, 0, G_OPTION_ARG_STRING, &MU_CONFIG.parts,
"save specific parts (comma-separated list)", NULL},
{"target-dir", 0, 0, G_OPTION_ARG_FILENAME, &MU_CONFIG.targetdir,
"target directory for saving", NULL},
{"overwrite", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.overwrite,
"overwrite existing files (false)", NULL},
{"play", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.play,
"try to 'play' (open) the extracted parts", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
MU_CONFIG.targetdir = g_strdup("."); /* default is the current dir */
og = g_option_group_new("extract",
"options for the 'extract' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
static GOptionGroup*
config_options_group_verify (void)
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"auto-retrieve", 'r', 0, G_OPTION_ARG_NONE,
&MU_CONFIG.auto_retrieve,
"attempt to retrieve keys online (false)", NULL},
{"use-agent", 'a', 0, G_OPTION_ARG_NONE, &MU_CONFIG.use_agent,
"attempt to use the GPG agent (false)", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("verify",
"options for the 'verify' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
static GOptionGroup*
config_options_group_server (void)
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"maildir", 'm', 0, G_OPTION_ARG_FILENAME, &MU_CONFIG.maildir,
"top of the maildir", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("server",
"options for the 'server' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
2012-07-19 19:45:06 +02:00
static MuConfigCmd
cmd_from_string (const char *str)
{
int i;
struct {
2012-07-19 19:45:06 +02:00
const gchar* name;
MuConfigCmd cmd;
} cmd_map[] = {
{ "add", MU_CONFIG_CMD_ADD },
{ "cfind", MU_CONFIG_CMD_CFIND },
{ "extract", MU_CONFIG_CMD_EXTRACT },
{ "find", MU_CONFIG_CMD_FIND },
2012-07-19 19:45:06 +02:00
{ "help", MU_CONFIG_CMD_HELP },
{ "index", MU_CONFIG_CMD_INDEX },
{ "mkdir", MU_CONFIG_CMD_MKDIR },
{ "remove", MU_CONFIG_CMD_REMOVE },
{ "server", MU_CONFIG_CMD_SERVER },
{ "verify", MU_CONFIG_CMD_VERIFY },
{ "view", MU_CONFIG_CMD_VIEW }
};
2012-07-19 19:45:06 +02:00
for (i = 0; i != G_N_ELEMENTS(cmd_map); ++i)
if (strcmp (str, cmd_map[i].name) == 0)
return cmd_map[i].cmd;
return MU_CONFIG_CMD_UNKNOWN;
}
static gboolean
parse_cmd (int *argcp, char ***argvp)
{
MU_CONFIG.cmd = MU_CONFIG_CMD_NONE;
MU_CONFIG.cmdstr = NULL;
if (*argcp < 2) /* no command found at all */
return TRUE;
else if ((**argvp)[1] == '-')
/* if the first param starts with '-', there is no
* command, just some option (like --version, --help
* etc.)*/
return TRUE;
MU_CONFIG.cmdstr = (*argvp)[1];
2012-07-19 19:45:06 +02:00
MU_CONFIG.cmd = cmd_from_string (MU_CONFIG.cmdstr);
2011-01-04 22:19:03 +01:00
return TRUE;
}
2012-07-19 19:45:06 +02:00
static GOptionGroup*
get_option_group (MuConfigCmd cmd)
2010-12-07 22:17:05 +01:00
{
2012-07-19 19:45:06 +02:00
switch (cmd) {
case MU_CONFIG_CMD_INDEX:
2012-07-19 19:45:06 +02:00
return config_options_group_index();
case MU_CONFIG_CMD_FIND:
2012-07-19 19:45:06 +02:00
return config_options_group_find();
case MU_CONFIG_CMD_MKDIR:
2012-07-19 19:45:06 +02:00
return config_options_group_mkdir();
case MU_CONFIG_CMD_EXTRACT:
2012-07-19 19:45:06 +02:00
return config_options_group_extract();
case MU_CONFIG_CMD_CFIND:
2012-07-19 19:45:06 +02:00
return config_options_group_cfind();
case MU_CONFIG_CMD_VERIFY:
2012-07-19 19:45:06 +02:00
return config_options_group_verify ();
case MU_CONFIG_CMD_VIEW:
2012-07-19 19:45:06 +02:00
return config_options_group_view();
case MU_CONFIG_CMD_SERVER:
2012-07-19 19:45:06 +02:00
return config_options_group_server();
default:
2012-07-19 19:45:06 +02:00
return NULL; /* no group to add */
}
2012-07-19 19:45:06 +02:00
}
static const gchar*
cmd_help (MuConfigCmd cmd, gboolean long_help)
{
unsigned u;
static const struct {
MuConfigCmd cmd;
const char *usage;
const char *long_help;
} help_strings[] = {
{ MU_CONFIG_CMD_ADD,
"mu add <file> [<files>]",
"mu add is the command to add specific measage files to the\n"
"database. Each of the files must be specified with an "
"absolute path." },
{ MU_CONFIG_CMD_CFIND,
"mu cfind [options] [<pattern>]",
"mu cfind is the mu command to find contacts in the mu\n"
"database and export them for use in other programs." },
{ MU_CONFIG_CMD_EXTRACT,
"mu extract [options] <file>\n"
"mu extract [options] <file> <pattern>",
"mu extract is the mu command to display and save message parts "
"(attachments)\n, and open them with other tools." },
{ MU_CONFIG_CMD_FIND,
"mu find [options] <search expression>",
"mu find is the mu command for searching e-mail message that were "
"stored earlier using mu index(1)." },
{ MU_CONFIG_CMD_HELP,
"mu help <command>",
"mu find is the mu command to get help about <command>." },
{ MU_CONFIG_CMD_INDEX,
"mu index [options]",
"mu index is the mu command for scanning the contents of Maildir "
"directories\nand storing the results in a Xapian database.\n\nThe "
"data can then be queried using mu-find(1)."},
{ MU_CONFIG_CMD_MKDIR,
"mu mkdir [options] <dir> [<dirs>]",
"mu mkdir is the mu command for creating Maildirs.\nIt does not "
"use the mu database. "},
{ MU_CONFIG_CMD_REMOVE,
"mu remove [options] <file> [<files>]",
"mu remove is the mu command to remove messages from the database." },
{ MU_CONFIG_CMD_SERVER,
"mu server [options]",
"mu server starts a simple shell in which one can query and "
"manipulate the mu database.\nThe output of the commands is terms "
"of Lisp symbolic expressions (s-exps).\nmu server is not meant for "
"use by humans; instead, it is designed specifically\nfor the "
"mu4e e-mail client." },
{ MU_CONFIG_CMD_VERIFY,
"mu verify [options] <msgfile>",
"mu verify is the mu command for verifying message signatures "
"(such as PGP/GPG signatures)\nand displaying information about them."
"\n\nThe command works on message files, and does not require "
"the message to be indexed in the database."},
{ MU_CONFIG_CMD_VIEW,
"mu view [options] <file> [<files>]",
"mu view is the mu command for displaying e-mail message files. It "
"works on message files and does \fInot\fR require the message to be "
"indexed in the database."}
};
2012-07-19 19:45:06 +02:00
for (u = 0; u != G_N_ELEMENTS(help_strings); ++u)
if (cmd == help_strings[u].cmd) {
if (long_help)
return help_strings[u].long_help;
else
return help_strings[u].usage ;
}
g_return_val_if_reached ("");
return "";
}
/* ugh yuck massaging of the GOption text output */
static gchar*
massage_help (const char *help)
{
GRegex *rx;
char *str;
rx = g_regex_new ("^Usage:.*\n.*\n",
0, G_REGEX_MATCH_NEWLINE_ANY, NULL);
str = g_regex_replace (rx, help,
-1, 0, "",
G_REGEX_MATCH_NEWLINE_ANY, NULL);
g_regex_unref (rx);
return str;
}
static gboolean
init_cmd_help (GError **err)
{
MuConfigCmd cmd;
GOptionContext *ctx;
GOptionGroup *group;
char *cleanhelp;
if (!MU_CONFIG.params ||
!MU_CONFIG.params[0] || !MU_CONFIG.params[1] ||
MU_CONFIG.params[2])
goto errexit;
cmd = cmd_from_string (MU_CONFIG.params[1]);
if (cmd == MU_CONFIG_CMD_UNKNOWN)
goto errexit;
ctx = g_option_context_new ("");
g_option_context_set_main_group
(ctx, config_options_group_mu());
group = get_option_group (cmd);
if (group)
g_option_context_add_group (ctx, group);
g_option_context_set_description (ctx, cmd_help (cmd, TRUE));
cleanhelp = massage_help
(g_option_context_get_help (ctx, TRUE, group));
g_print ("Usage:\n\t%s\n%s",
cmd_help (cmd, FALSE), cleanhelp);
g_free (cleanhelp);
return TRUE;
errexit:
mu_util_g_set_error (err, MU_ERROR_IN_PARAMETERS,
"usage: mu help <command>");
return FALSE;
}
static gboolean
parse_params (int *argcp, char ***argvp)
{
2012-07-19 19:45:06 +02:00
GError *err;
GOptionContext *context;
gboolean rv;
2012-07-19 19:45:06 +02:00
context = g_option_context_new("- mu general options");
g_option_context_set_main_group(context, config_options_group_mu());
2012-07-19 19:45:06 +02:00
g_option_context_set_help_enabled (context, TRUE);
err = NULL;
/* help is special */
if (MU_CONFIG.cmd == MU_CONFIG_CMD_HELP) {
rv = g_option_context_parse (context, argcp, argvp, &err) &&
init_cmd_help (&err);
} else {
GOptionGroup *group;
group = get_option_group (MU_CONFIG.cmd);
if (group)
g_option_context_add_group(context, group);
rv = g_option_context_parse (context, argcp, argvp, &err);
}
g_option_context_free (context);
if (!rv) {
2012-07-19 19:45:06 +02:00
g_printerr ("mu: error in options: %s\n",
err ? err->message : "?");
g_clear_error (&err);
return FALSE;
}
2012-07-19 19:45:06 +02:00
2011-07-22 20:11:50 +02:00
return TRUE;
}
2011-01-04 22:19:03 +01:00
MuConfig*
mu_config_init (int *argcp, char ***argvp)
{
g_return_val_if_fail (argcp && argvp, NULL);
memset (&MU_CONFIG, 0, sizeof(MU_CONFIG));
2012-07-19 19:45:06 +02:00
if (!parse_cmd (argcp, argvp))
goto errexit;
if (!parse_params(argcp, argvp))
goto errexit;
/* fill in the defaults if user did not specify */
set_group_mu_defaults();
set_group_index_defaults();
set_group_find_defaults();
set_group_cfind_defaults();
set_group_view_defaults();
/* set_group_mkdir_defaults (config); */
return &MU_CONFIG;
2012-07-19 19:45:06 +02:00
errexit:
mu_config_uninit (&MU_CONFIG);
return NULL;
}
2011-01-02 13:59:03 +01:00
void
mu_config_uninit (MuConfig *opts)
{
if (!opts)
return;
g_free (opts->muhome);
g_free (opts->maildir);
g_free (opts->linksdir);
g_free (opts->targetdir);
g_strfreev (opts->params);
memset (opts, 0, sizeof(MU_CONFIG));
2011-01-04 22:19:03 +01:00
}
size_t
mu_config_param_num (MuConfig *opts)
{
size_t n;
g_return_val_if_fail (opts && opts->params, 0);
for (n = 0; opts->params[n]; ++n);
return n;
}