Photon BBS, Simple BBS system for Unix
Copyright (C) 2002, Andrew Wyatt - FEWT Software

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

First, if you decide to use this code, send an email to me letting me know
where your BBS ends up. If there are enough people using it I'll go ahead
and create a BBS list. :-) If you don't want to, no big deal.

There is no readme. untar this code, them move the folder it creates to /home/bbs
Edit /home/bbs/framework.pl and modify the default options to suit.

Test that the BBS works by running /home/bbs/bbs.pl, create a user account.
Edit /home/bbs/data/users/0.dat and set your sec level to 500.

If you get this working on systems other than those listed below, please tell me
what you did.

On HPUX replace /usr/bin/login with a symlink to /home/bbs/bbs.pl (NOTE: YOU WILL
NOT BE ABLE TO LOGIN IF THINGS GO WRONG WITHOUT USING X)

On Linux create the following to match your configuration.

/etc/inetd.conf:
mybbs     stream  tcp     nowait  nobody    /usr/sbin/tcpd  in.telnetd -h -L /home/bbs/bbs.pl
or

/etc/xinetd.d/bbs:
service mybbs
{
        disable = no
        flags           = REUSE
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/sbin/in.telnetd
        server_args     = -L /home/bbs/bbs.pl
        log_on_failure  += USERID
}

/etc/services
mybbs		27/tcp		(Make telnet 27, and the BBS 23 if you are not forwarding ports on your firewall.)
