git://git.exim.org
/
exim.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Taint: hybrid checking mode
[exim.git]
/
src
/
src
/
exiqgrep.src
diff --git
a/src/src/exiqgrep.src
b/src/src/exiqgrep.src
index 05c1b9ed06ef9ee43212ef9ef1e39798ce71a495..c8762df479da01279db8d73d9a4a1ad3a57ecd93 100644
(file)
--- a/
src/src/exiqgrep.src
+++ b/
src/src/exiqgrep.src
@@
-18,7
+18,10
@@
# Version 1.2
use strict;
# Version 1.2
use strict;
+BEGIN { pop @INC if $INC[-1] eq '.' };
+
use Getopt::Std;
use Getopt::Std;
+use File::Basename;
# Have this variable point to your exim binary.
my $exim = 'BIN_DIRECTORY/exim';
# Have this variable point to your exim binary.
my $exim = 'BIN_DIRECTORY/exim';
@@
-43,9
+46,19
@@
if ($^O eq 'darwin') { # aka MacOS X
$base = 62;
};
$base = 62;
};
-getopts('hf:r:y:o:s:zxlibRca',\%opt);
+if ($ARGV[0] eq '--version') {
+ print basename($0) . ": $0\n",
+ "build: EXIM_RELEASE_VERSIONEXIM_VARIANT_VERSION\n",
+ "perl(runtime): $]\n";
+ exit 0;
+}
+
+getopts('hf:r:y:o:s:C:zxlibRcaG:',\%opt);
+if ($ARGV[0]) { &help; exit;}
if ($opt{h}) { &help; exit;}
if ($opt{a}) { $eargs = '-bp'; }
if ($opt{h}) { &help; exit;}
if ($opt{a}) { $eargs = '-bp'; }
+if ($opt{C} && -e $opt{C} && -f $opt{C} && -R $opt{C}) { $eargs .= ' -C '.$opt{C}; }
+if ($opt{G}) { $eargs .= ' -qG'.$opt{G}; }
# Read message queue output into hash
&collect();
# Read message queue output into hash
&collect();
@@
-61,6
+74,7
@@
sub help() {
Exim message queue display utility.
-h This help message.
Exim message queue display utility.
-h This help message.
+ -C Specify which exim.conf to use.
Selection criteria:
-f <regexp> Match sender address sender (field is "< >" wrapped)
Selection criteria:
-f <regexp> Match sender address sender (field is "< >" wrapped)
@@
-70,6
+84,7
@@
Selection criteria:
-o <seconds> Message older than
-z Frozen messages only (exclude non-frozen)
-x Non-frozen messages only (exclude frozen)
-o <seconds> Message older than
-z Frozen messages only (exclude non-frozen)
-x Non-frozen messages only (exclude frozen)
+ -G <queuename> Match in given queue only
[ NB: for regexps, provided string sits in /<string>/ ]
[ NB: for regexps, provided string sits in /<string>/ ]
@@
-84,7
+99,7
@@
EOF
}
sub collect() {
}
sub collect() {
- open(QUEUE,"$exim $eargs |") or die("Error open
n
ing pipe: $!\n");
+ open(QUEUE,"$exim $eargs |") or die("Error opening pipe: $!\n");
while(<QUEUE>) {
chomp();
my $line = $_;
while(<QUEUE>) {
chomp();
my $line = $_;