git://git.exim.org
/
users
/
jgh
/
exim.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
MIME: recode 2231-to-2047 safely. Bug 466
[users/jgh/exim.git]
/
src
/
src
/
exiqgrep.src
diff --git
a/src/src/exiqgrep.src
b/src/src/exiqgrep.src
index e05589073142f823cd2b179cf06a14b2a545b3c0..afecbffeec250e8183f2eaed80cecf0957fa1fa5 100644
(file)
--- a/
src/src/exiqgrep.src
+++ b/
src/src/exiqgrep.src
@@
-43,8
+43,10
@@
if ($^O eq 'darwin') { # aka MacOS X
$base = 62;
};
$base = 62;
};
-getopts('hf:r:y:o:s:
zxlibRc
',\%opt);
+getopts('hf:r:y:o:s:
C:zxlibRca
',\%opt);
if ($opt{h}) { &help; exit;}
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}; }
# Read message queue output into hash
&collect();
# Read message queue output into hash
&collect();
@@
-60,6
+62,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)
@@
-78,6
+81,7
@@
Display options:
-i Message IDs only
-b Brief Format
-R Reverse order
-i Message IDs only
-b Brief Format
-R Reverse order
+ -a All recipients (including delivered)
EOF
}
EOF
}