#!/usr/bin/perl ############################################ ## ## ## WebBBS ## ## by Darryl Burgdorf ## ## ## ## Configuration File ## ## ## ############################################ ## (1) Define the location of your files: require "/usr/home/westercon/www/51/cgi-bin/webbbs.cgi"; $dir = "/usr/home/westercon/www/51/bbs/"; $cgiurl = "http://www.westercon.org/51/bbs/bbs.cgi"; ## (2) Tailor the appearance and functionality of your BBS: $bodyspec = "BGCOLOR=\"#000000\" TEXT=\"#FFFF00\""; $HeadLinesFile = ""; $HeaderFile = "/usr/home/westercon/www/51/bbs/bbs_header.txt"; $FooterFile = "/usr/home/westercon/www/51/bbs/bbs_foot.txt"; $MessageHeaderFile = "/usr/home/westercon/www/51/bbs/bbs_header.txt"; $MessageFooterFile = "/usr/home/westercon/www/51/bbs/bbs_foot.txt"; $DefaultType = ""; $DefaultTime = ""; $boardname = "WebBBS Comments on Concept"; $InputColumns = 80; $InputRows = 60; $HourOffset = 0; $ArchiveOnly = 0; $AllowHTML = 0; $AutoQuote = 1; $SingleLineBreaks = 0; $UseCookies = 0; #require "/usr/www/cgi-bin/cookie.lib"; $UseAdmin = 0; $Max_Days = 30; $Max_Messages = 500; $ArchiveDir = ""; ## (3) Define your visitors' capabilities: $AllowUserDeletion = 0; $AllowEmailNotices = 1; $AllowPreview = 1; $AllowURLs = 0; $AllowPics = 0; $NaughtyWords = ""; ## (4) Define your e-mail notification features: $mailprog = '/usr/sbin/sendmail'; $maillist_address = "concept\@westercon.org"; $email_list = 1; $HeaderOnly = 0; $AdminEmail = 0; &WebBBS; ## (5) If necessary, set up the WebAdverts configuration subroutine