Implement a debug mode ("--debug").
This commit is contained in:
parent
af7c6c8ced
commit
5cc84ca1bd
@ -1,5 +1,4 @@
|
||||
.Id $Id: mboxgrep.1,v 1.16 2006-01-18 00:09:58 dspiljar Exp $
|
||||
.TH MBOXGREP 1 "26 Jan 2023"
|
||||
.TH MBOXGREP 1 "17 Feb 2023"
|
||||
.SH NAME
|
||||
mboxgrep \- displays email messages matching a pattern
|
||||
.SH SYNOPSIS
|
||||
@ -86,6 +85,10 @@ Ignore duplicate messages.
|
||||
Select input and output mailbox TYPE. TYPE can be either `mbox' (default),
|
||||
`zmbox' (gzip compressed mbox), `bz2mbox' (bzip2 compressed mbox), `mh', `nnml',
|
||||
`nnmh' or `maildir'.
|
||||
.IP "-s, --no-messages"
|
||||
Suppress most error messages.
|
||||
.IP "--debug"
|
||||
Print messages useful for debugging.
|
||||
.SH EXAMPLES
|
||||
.TP
|
||||
\(bu
|
||||
|
Binary file not shown.
@ -6,7 +6,7 @@
|
||||
|
||||
@set EDITION 0.7
|
||||
@set VERSION 0.7.10
|
||||
@set UPDATED 26 Jan 2023
|
||||
@set UPDATED 17 Feb 2023
|
||||
|
||||
@dircategory Mail
|
||||
@direntry
|
||||
@ -188,6 +188,9 @@ instance of COMMAND.
|
||||
@itemx -s
|
||||
Suppress error messages.
|
||||
|
||||
@item --debug
|
||||
Print messages useful for debugging.
|
||||
|
||||
@end table
|
||||
|
||||
@node Search scope selection, Mailbox type selection, Output control, Invoking
|
||||
|
@ -120,7 +120,8 @@ help (void)
|
||||
" -nd, --no-duplicates\t\tIgnore duplicate messages\n"
|
||||
" -o, --output=MAILBOX\t\tWrite messages to MAILBOX\n"
|
||||
" -p, --pipe=COMMAND\t\tPipe each found message to COMMAND\n"
|
||||
" -s, --no-messages\t\tSuppress most error messages\n\n"
|
||||
" -s, --no-messages\t\tSuppress most error messages\n"
|
||||
" --debug\t\t\tPrint messages useful for debugging\n\n"
|
||||
"Matching criteria:\n\n"
|
||||
" -E, --extended-regexp\tPATTERN is an extended regular expression\n"
|
||||
" -G, --basic-regexp\t\tPATTERN is a basic regular expression\n");
|
||||
|
@ -76,6 +76,7 @@ main (int argc, char **argv)
|
||||
{"output", 1, 0, 'o'},
|
||||
{"no-duplicates", 0, 0, 200},
|
||||
{"no-file-lock", 0, 0, 201},
|
||||
{"debug", 0, 0, 202},
|
||||
{"file-lock", 1, 0, 'l'},
|
||||
{"recursive", 0, 0, 'r'},
|
||||
{0, 0, 0, 0}
|
||||
|
@ -107,6 +107,7 @@ typedef struct
|
||||
int merr;
|
||||
int pid;
|
||||
int haveregex;
|
||||
int debug;
|
||||
|
||||
char hostname[HOST_NAME_SIZE];
|
||||
char *boxname, *outboxname, *pipecmd, *tmpfilename, *regex_s;
|
||||
|
10
src/misc.c
10
src/misc.c
@ -61,7 +61,7 @@ folder_format (const char *name)
|
||||
else
|
||||
{
|
||||
if (config.merr)
|
||||
fprintf (stderr, "mboxgrep: %s: unknown folder type\n", name);
|
||||
fprintf (stderr, "%s: %s: unknown folder type\n", APPNAME, name);
|
||||
exit (2);
|
||||
}
|
||||
|
||||
@ -181,6 +181,7 @@ set_default_options (void)
|
||||
config.format = MBOX; /* default mailbox format */
|
||||
config.lock = FCNTL; /* default file locking method */
|
||||
config.merr = 1; /* report errors by default */
|
||||
config.debug = 0;
|
||||
}
|
||||
|
||||
void
|
||||
@ -227,7 +228,7 @@ get_runtime_options (int *argc, char **argv, struct option *long_options)
|
||||
#else
|
||||
fprintf(stderr,
|
||||
"%s: Support for Perl regular expressions not "
|
||||
"compiled in\n");
|
||||
"compiled in\n", APPNAME);
|
||||
exit(2);
|
||||
#endif /* HAVE_LIBPCRE */
|
||||
break;
|
||||
@ -265,6 +266,11 @@ get_runtime_options (int *argc, char **argv, struct option *long_options)
|
||||
case 201:
|
||||
config.lock = 0;
|
||||
break;
|
||||
case 202:
|
||||
config.debug = 1;
|
||||
fprintf (stderr, "%s: %s, line %d: enable debugging\n",
|
||||
APPNAME, __FILE__, __LINE__);
|
||||
break;
|
||||
case 'r':
|
||||
config.recursive = 1;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user