summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormg <mg@fork.pl>2014-04-22 00:41:34 +0200
committermg <mg@fork.pl>2014-04-22 00:41:34 +0200
commit209e806ce1bf13554bf7a5cfe161b83f0fbbab3a (patch)
tree35c0da65df33f3e0026ed4e25bfaf3fc9e2dd1c1 /src
parentb689ba95f8df67b96a098fc1710577dded2e01ae (diff)
exiqgrep: add -a to use all recipients (including delivered)
Diffstat (limited to 'src')
-rw-r--r--src/src/exiqgrep.src4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/src/exiqgrep.src b/src/src/exiqgrep.src
index e05589073..05c1b9ed0 100644
--- a/src/src/exiqgrep.src
+++ b/src/src/exiqgrep.src
@@ -43,8 +43,9 @@ if ($^O eq 'darwin') { # aka MacOS X
$base = 62;
};
-getopts('hf:r:y:o:s:zxlibRc',\%opt);
+getopts('hf:r:y:o:s:zxlibRca',\%opt);
if ($opt{h}) { &help; exit;}
+if ($opt{a}) { $eargs = '-bp'; }
# Read message queue output into hash
&collect();
@@ -78,6 +79,7 @@ Display options:
-i Message IDs only
-b Brief Format
-R Reverse order
+ -a All recipients (including delivered)
EOF
}