fix console.pl max scroll depth
[spider.git] / cmd / directory.pl
index 39131aaa7dcbda9280af8e55bc1039aa015631da..1e2193219ef984afc97bde2cc1e0dfbba04f5563 100644 (file)
@@ -3,7 +3,7 @@
 #
 # Copyright (c) Dirk Koopman G1TLH
 #
-# $Id$
+#
 #
 
 my ($self, $line) = @_;
@@ -13,8 +13,12 @@ my $ref;
 my @out;
 my $f;
 my $n = 0;
+
+# select candidates
 my @all = grep {!$_->private || !($self->priv < 5 && $_->to ne $self->call && $_->from ne $self->call)} (DXMsg::get_all());
-return (1, $self->msg('e3', 'directory', $line)) unless @all;
+@all =  grep {!$_->delete  || ($self->priv >= 5 && $_->delete)} @all;
+
+return (1, $self->msg('dir1')) unless @all;
 my $sel = 0;
 my $from = 0;
 my $to = $all[@all-1]->msgno;
@@ -76,6 +80,6 @@ if (@ref) {
                last if ++$count >= $n;
        }
 } else {
-       push @out, $self->msg('e3', 'directory', $line); 
+       push @out, $self->msg('dir1'); 
 }
 return (1, @out);