4 # show all excluded users
6 # Copyright (c) 2000 Dirk Koopman G1TLH
11 my ($self, $line) = @_;
12 return (1, $self->msg('e5')) unless $self->priv >= 1;
18 my ($action, $count, $key, $data) = (0,0,0,0);
19 for ($action = DXUser::R_FIRST, $count=0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
20 if ($data =~ m{isolate}) {
21 my $u = DXUser->get_current($key);
22 if ($u && $u->isolate) {
29 return (1, @out, $self->msg('rec', $count));