summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command
diff options
context:
space:
mode:
authorfukachan <fukachan>2004-09-03 12:43:55 +0000
committerfukachan <fukachan>2004-09-03 12:43:55 +0000
commit08ca38b330be0226a230b2a98c3e289fe944b9aa (patch)
tree0fd177367cc351ba87e9b63bdce9e6d019a03330 /fml/lib/FML/Command
parent6ee915615bee2181f8532e9e1453cfcc892e1fef (diff)
downloadfml8-08ca38b330be0226a230b2a98c3e289fe944b9aa.tar.gz
fml8-08ca38b330be0226a230b2a98c3e289fe944b9aa.tar.bz2
fml8-08ca38b330be0226a230b2a98c3e289fe944b9aa.zip
show all entries not only within active queue.
Diffstat (limited to 'fml/lib/FML/Command')
-rw-r--r--fml/lib/FML/Command/Admin/mailq.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Command/Admin/mailq.pm b/fml/lib/FML/Command/Admin/mailq.pm
index e3a8d8e6..17237986 100644
--- a/fml/lib/FML/Command/Admin/mailq.pm
+++ b/fml/lib/FML/Command/Admin/mailq.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: mailq.pm,v 1.8 2004/06/26 11:47:57 fukachan Exp $
+# $FML: mailq.pm,v 1.9 2004/08/14 03:35:43 fukachan Exp $
#
package FML::Command::Admin::mailq;
@@ -78,7 +78,7 @@ sub _list_up_queue
use Mail::Delivery::Queue;
my $queue = new Mail::Delivery::Queue { directory => $queue_dir };
- my $ra_list = $queue->list();
+ my $ra_list = $queue->list_all();
for my $qid (@$ra_list) {
my $info = $queue->getidinfo($qid);