1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999-2025 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library. If not, see
<http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdlib.h>
#include <sieve-priv.h>
#include <string.h>
#include <mailutils/cli.h>
mu_list_t mu_sieve_include_path = NULL;
mu_list_t mu_sieve_library_path = NULL;
mu_list_t mu_sieve_library_path_prefix = NULL;
mu_debug_handle_t mu_sieve_debug_handle;
void
mu_sieve_debug_init (void)
{
if (!mu_sieve_debug_handle)
mu_sieve_debug_handle = mu_debug_register_category ("sieve");
}
struct sieve_settings
{
int clearflags;
mu_list_t include_path;
mu_list_t library_path_prefix;
mu_list_t library_path;
};
static struct sieve_settings sieve_settings;
static int
_path_append (void *item, void *data)
{
mu_list_t *plist = data;
char *p;
int rc;
if (!*plist)
{
rc = mu_list_create (plist);
if (rc)
{
mu_error (_("cannot create list: %s"), mu_strerror (rc));
exit (1);
}
mu_list_set_destroy_item (*plist, mu_list_free_item);
}
p = strdup (item);
if (!p)
rc = errno;
else
rc = mu_list_append (*plist, p);
if (rc)
{
mu_error (_("can't add directory to path: %s"), mu_strerror (rc));
exit (1);
}
return 0;
}
static int
cb_clear_library_path (void *data, mu_config_value_t *val)
{
int flag;
if (mu_cfg_assert_value_type (val, MU_CFG_STRING))
return 1;
if (mu_str_to_c (val->v.string, mu_c_bool, &flag, NULL))
{
mu_error (_("not a boolean"));
return 1;
}
if (flag)
sieve_settings.clearflags |= MU_SIEVE_CLEAR_LIBRARY_PATH;
return 0;
}
static int
cb_clear_include_path (void *data, mu_config_value_t *val)
{
int flag;
if (mu_cfg_assert_value_type (val, MU_CFG_STRING))
return 1;
if (mu_str_to_c (val->v.string, mu_c_bool, &flag, NULL))
{
mu_error (_("not a boolean"));
return 1;
}
if (flag)
sieve_settings.clearflags |= MU_SIEVE_CLEAR_INCLUDE_PATH;
return 0;
}
static int
_add_path (const char *arg, void *data)
{
mu_list_t *plist = data;
if (!*plist)
{
int rc = mu_list_create (plist);
if (rc)
{
mu_error (_("cannot create list: %s"), mu_strerror (rc));
exit (1);
}
mu_list_set_destroy_item (*plist, mu_list_free_item);
}
return mu_string_split (arg, ":", *plist);
}
static int
cb_include_path (void *data, mu_config_value_t *val)
{
return mu_cfg_string_value_cb (val, _add_path,
&sieve_settings.include_path);
}
static int
cb_library_path (void *data, mu_config_value_t *val)
{
return mu_cfg_string_value_cb (val, _add_path,
&sieve_settings.library_path);
}
static int
cb_library_path_prefix (void *data, mu_config_value_t *val)
{
return mu_cfg_string_value_cb (val, _add_path,
&sieve_settings.library_path_prefix);
}
static struct mu_cfg_param mu_sieve_param[] = {
{ "clear-library-path", mu_cfg_callback, NULL, 0, cb_clear_library_path,
N_("Clear library search path."),
N_("arg: bool") },
{ "clear-include-path", mu_cfg_callback, NULL, 0, cb_clear_include_path,
N_("Clear include search path."),
N_("arg: directory list") },
{ "library-path", mu_cfg_callback, NULL, 0, cb_library_path,
N_("Add directories to the library search path. Argument is a "
"colon-separated list of directories."),
N_("arg: directory list") },
{ "library-path-prefix", mu_cfg_callback, NULL, 0, cb_library_path_prefix,
N_("Add directories to the beginning of the library search path. "
"Argument is a colon-separated list of directories."),
N_("arg: directory list") },
{ "include-path", mu_cfg_callback, NULL, 0, cb_include_path,
N_("Add directories to the include search path. Argument is a "
"colon-separated list of directories."),
N_("arg: directory list") },
{ NULL }
};
/* New capability support */
static void
cli_includedir (struct mu_parseopt *po, struct mu_option *opt,
char const *arg)
{
_add_path (arg, &sieve_settings.include_path);
}
static void
cli_libdir (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
_add_path (arg, &sieve_settings.library_path);
}
static void
cli_libdir_prefix (struct mu_parseopt *po, struct mu_option *opt,
char const *arg)
{
_add_path (arg, &sieve_settings.library_path_prefix);
}
static void
cli_clear_include_path (struct mu_parseopt *po, struct mu_option *opt,
char const *arg)
{
sieve_settings.clearflags |= MU_SIEVE_CLEAR_INCLUDE_PATH;
}
static void
cli_clear_library_path (struct mu_parseopt *po, struct mu_option *opt,
char const *arg)
{
sieve_settings.clearflags |= MU_SIEVE_CLEAR_LIBRARY_PATH;
}
static struct mu_option sieve_option[] = {
MU_OPTION_GROUP (N_("Sieve options")),
{ "includedir", 'I', N_("DIR"), MU_OPTION_DEFAULT,
N_("append DIR to the list of directories searched for include files"),
mu_c_string, NULL, cli_includedir },
{ "libdir", 'L', N_("DIR"), MU_OPTION_DEFAULT,
N_("append DIR to the list of directories searched for library files"),
mu_c_string, NULL, cli_libdir },
{ "libdir-prefix", 0, N_("DIR"), MU_OPTION_DEFAULT,
N_("add DIR to the beginning of the list of directories searched for "
"library files"),
mu_c_string, NULL, cli_libdir_prefix },
{ "clear-include-path", 0, NULL, MU_OPTION_DEFAULT,
N_("clear Sieve include path"),
mu_c_string, NULL, cli_clear_include_path },
{ "clear-library-path", 0, NULL, MU_OPTION_DEFAULT,
N_("clear Sieve library path"),
mu_c_string, NULL, cli_clear_library_path },
{ "clearpath", 0, NULL, MU_OPTION_ALIAS },
MU_OPTION_END
};
static void
sieve_commit (void *ptr)
{
if (sieve_settings.clearflags & MU_SIEVE_CLEAR_INCLUDE_PATH)
mu_list_destroy (&mu_sieve_include_path);
mu_list_foreach (sieve_settings.include_path, _path_append,
&mu_sieve_include_path);
if (sieve_settings.clearflags & MU_SIEVE_CLEAR_LIBRARY_PATH)
{
mu_list_destroy (&mu_sieve_library_path);
mu_list_destroy (&mu_sieve_library_path_prefix);
}
mu_list_foreach (sieve_settings.library_path_prefix, _path_append,
&mu_sieve_library_path_prefix);
mu_list_foreach (sieve_settings.library_path, _path_append,
&mu_sieve_library_path);
mu_list_destroy (&sieve_settings.library_path);
mu_list_destroy (&sieve_settings.library_path_prefix);
mu_list_destroy (&sieve_settings.include_path);
mu_sieve_debug_init ();
}
struct mu_cli_capa mu_cli_capa_sieve = {
"sieve",
sieve_option,
mu_sieve_param,
NULL,
sieve_commit
};
|