Compare commits

...

3 Commits

Author SHA1 Message Date
Daniel Spiljar c732d4f949
Phrasing
Clarify that the parameter to the "-o" switch is a MAILBOX instead of a
FOLDER (which could be confused with an ordinary filesystem folder).

Added per Roman Nezval's comment.
2023-12-29 00:59:25 +01:00
Daniel Spiljar 7255fae5d0
Bump the version to 0.7.12a. 2023-05-21 15:09:44 +02:00
Daniel Spiljar 03407c7afb
Correction of Automake macros
Fix Automake macros to include the license file and other files and
directories in the distribution tarball.
2023-05-21 12:05:18 +02:00
7 changed files with 33 additions and 30 deletions

View File

@ -1,2 +1,2 @@
SUBDIRS = doc src SUBDIRS = doc src
dist_data_DATA = contrib EXTRA_DIST = contrib COPYING.md INSTALL.md NEWS.md README.md TODO.md

View File

@ -1,5 +1,9 @@
# Changes of mboxgrep # Changes of mboxgrep
## Changes since 0.7.12
- Fix Automake macros to include the license file and others.
## Changes since 0.7.11 ## Changes since 0.7.11
- Port to the pcre2 library (pcre1 is no longer supported). - Port to the pcre2 library (pcre1 is no longer supported).

View File

@ -18,7 +18,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
# Yawn. # Yawn.
AC_INIT([mboxgrep], [0.7.12], [dspiljar@datatipp.se], [mboxgrep], [https://www.mboxgrep.org/]) AC_INIT([mboxgrep], [0.7.12a], [dspiljar@datatipp.se], [mboxgrep], [https://www.mboxgrep.org/])
#AM_INIT_AUTOMAKE #AM_INIT_AUTOMAKE
AM_INIT_AUTOMAKE([foreign]) AM_INIT_AUTOMAKE([foreign])
AC_LANG([C]) AC_LANG([C])

View File

@ -1,4 +1,4 @@
.TH MBOXGREP 1 "20 May 2023" .TH MBOXGREP 1 "21 May 2023"
.SH NAME .SH NAME
mboxgrep \- displays email messages matching a pattern mboxgrep \- displays email messages matching a pattern
.SH SYNOPSIS .SH SYNOPSIS
@ -10,7 +10,7 @@ mboxgrep \- displays email messages matching a pattern
This manual page refers to This manual page refers to
.B mboxgrep .B mboxgrep
version version
.BR 0.7.12 . .BR 0.7.12a .
.PP .PP
.B mboxgrep .B mboxgrep
scans a scans a
@ -72,8 +72,8 @@ Do not lock files. This option is meaningful only if a mbox folder (see below)
is scanned. is scanned.
.IP "-c, --count" .IP "-c, --count"
Suppress normal output and print a count of matching messages. Suppress normal output and print a count of matching messages.
.IP "-o, --output=FOLDER" .IP "-o, --output=MAILBOX"
Suppress normal output and write messages to destination folder FOLDER instead. Suppress normal output and write messages to destination MAILBOX instead.
.IP "-p, --pipe=COMMAND" .IP "-p, --pipe=COMMAND"
Pipe each found message to COMMAND Pipe each found message to COMMAND
.IP "-d, --delete" .IP "-d, --delete"

View File

@ -1,4 +1,4 @@
This is mboxgrep.info, produced by makeinfo version 6.7 from This is mboxgrep.info, produced by makeinfo version 6.8 from
mboxgrep.texi. mboxgrep.texi.
INFO-DIR-SECTION Mail INFO-DIR-SECTION Mail
@ -9,7 +9,7 @@ END-INFO-DIR-ENTRY
 
File: mboxgrep.info, Node: Top, Up: (dir) File: mboxgrep.info, Node: Top, Up: (dir)
This file documents 'mboxgrep' (version 0.7.12), a mailbox scanning This file documents 'mboxgrep' (version 0.7.12a), a mailbox scanning
utility. utility.
Copyright (C) 2000, 2001, 2002, 2003 Daniel Spiljar Copyright (C) 2000, 2001, 2002, 2003 Daniel Spiljar
@ -151,10 +151,10 @@ options below change such behavior.
'-nd' '-nd'
Ignore duplicate messages. Ignore duplicate messages.
'--output=FOLDER' '--output=MAILBOX'
'-o FOLDER' '-o MAILBOX'
Suppress normal output and write messages to destination folder Suppress normal output and write messages to destination MAILBOX
FOLDER instead. instead.
Note that 'mboxgrep' assumes the output folder is of the same Note that 'mboxgrep' assumes the output folder is of the same
format as the input folder. Currently there is no possibility to format as the input folder. Currently there is no possibility to
@ -250,17 +250,17 @@ Sleep well, little friend.
 
Tag Table: Tag Table:
Node: Top197 Node: Top197
Node: Introduction596 Node: Introduction597
Node: Invoking1465 Node: Invoking1466
Node: Miscellaneous1827 Node: Miscellaneous1828
Node: File locking2112 Node: File locking2113
Node: Regexp selection2749 Node: Regexp selection2750
Node: Output control3301 Node: Output control3302
Node: Search scope selection4345 Node: Search scope selection4342
Node: Mailbox type selection4586 Node: Mailbox type selection4583
Node: Examples4907 Node: Examples4904
Node: Bugs5731 Node: Bugs5728
Node: To Vicky6149 Node: To Vicky6146
 
End Tag Table End Tag Table

View File

@ -5,8 +5,8 @@
@setchapternewpage odd @setchapternewpage odd
@set EDITION 0.7 @set EDITION 0.7
@set VERSION 0.7.12 @set VERSION 0.7.12a
@set UPDATED 20 May 2023 @set UPDATED 21 May 2023
@dircategory Mail @dircategory Mail
@direntry @direntry
@ -171,10 +171,9 @@ Use with extreme caution.
@itemx -nd @itemx -nd
Ignore duplicate messages. Ignore duplicate messages.
@item --output=FOLDER @item --output=MAILBOX
@itemx -o FOLDER @itemx -o MAILBOX
Suppress normal output and write messages to destination folder FOLDER Suppress normal output and write messages to destination MAILBOX instead.
instead.
Note that @code{mboxgrep} assumes the output folder is of the same format Note that @code{mboxgrep} assumes the output folder is of the same format
as the input folder. Currently there is no possibility to convert folders. as the input folder. Currently there is no possibility to convert folders.

View File

@ -21,7 +21,7 @@
#define MBOXGREP_H #define MBOXGREP_H
#define APPNAME "mboxgrep" #define APPNAME "mboxgrep"
#define VERSION "0.7.12" #define VERSION "0.7.12a"
#define BUGREPORT_ADDR "dspiljar AT datatipp.se" #define BUGREPORT_ADDR "dspiljar AT datatipp.se"
#define HOST_NAME_SIZE 256 #define HOST_NAME_SIZE 256