BBS::Client - A Client Module For BBS Systems
use BBS::Client;
my $o = BBS::Client->new( {
host => 'bs2.to',
sys => 'bs2' , # system type ( ptt or maple )
});
if( $o->login($user,$pass) ) {
$o->enter_board($board);
$o->fetch_articles( $start , $end );
} else {
print "failed..\n";
}
To connect with BBS systems to backup articles , I wrote this module , which is
implemented with Net::Telnet. You can fetch articles from BBS Systems , such
like ptt.cc , ptt2.cc and bs2.to
This module works on different BBS Systems by given specific
scheme to emit corresponding behaviors. You can also add your scheme to this
module. ( BBS::Client::Scheme )
Cornelius, <cornelius.howl@gmail.com>
Copyright (C) 2007 by Cornelius
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.