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
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2010-2025 Free Software Foundation, Inc.
GNU Mailutils 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.
GNU Mailutils 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 GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. */
#include "mu.h"
/* Manipulations with verbosity flags, which are common for pop and imap. */
int shell_verbose_flags;
static int
string_to_xlev (const char *name, int *pv)
{
if (strcmp (name, "secure") == 0)
*pv = MU_XSCRIPT_SECURE;
else if (strcmp (name, "payload") == 0)
*pv = MU_XSCRIPT_PAYLOAD;
else
return 1;
return 0;
}
static int
change_verbose_mask (int set, int argc, char **argv)
{
int i;
for (i = 0; i < argc; i++)
{
int lev;
if (string_to_xlev (argv[i], &lev))
{
mu_error ("unknown level: %s", argv[i]);
return 1;
}
if (set)
SET_VERBOSE_MASK (lev);
else
CLR_VERBOSE_MASK (lev);
}
return 0;
}
int
shell_verbose (int argc, char **argv,
void (*set_verbose) (void), void (*set_mask) (void))
{
if (argc == 1)
{
if (QRY_VERBOSE ())
{
mu_printf ("verbose is on");
if (HAS_VERBOSE_MASK ())
{
char *delim = " (";
if (QRY_VERBOSE_MASK (MU_XSCRIPT_SECURE))
{
mu_printf ("%ssecure", delim);
delim = ", ";
}
if (QRY_VERBOSE_MASK (MU_XSCRIPT_PAYLOAD))
mu_printf ("%spayload", delim);
mu_printf (")");
}
mu_printf ("\n");
}
else
mu_printf ("verbose is off\n");
}
else
{
int bv;
if (get_bool (argv[1], &bv) == 0)
{
if (bv)
SET_VERBOSE ();
else
CLR_VERBOSE ();
if (argc > 2)
change_verbose_mask (shell_verbose_flags, argc - 2, argv + 2);
set_verbose ();
}
else if (strcmp (argv[1], "mask") == 0)
change_verbose_mask (1, argc - 2, argv + 2);
else if (strcmp (argv[1], "unmask") == 0)
change_verbose_mask (0, argc - 2, argv + 2);
else
mu_error ("unknown subcommand");
set_mask ();
}
return 0;
}
|