spider/cmd/bye.pl
2001-11-07 17:00:28 +00:00

21 lines
258 B
Perl

#
# the bye command
#
# $Id$
#
my $self = shift;
# log out text
if ($self->is_user && -e "$main::data/logout") {
open(I, "$main::data/logout") or confess;
my @in = <I>;
close(I);
$self->send_now('D', @in);
sleep(1);
}
$self->disconnect;
return (1);