#!/usr/bin/perl ############################################ ## ## ## WebBBS ## ## by Darryl Burgdorf ## ## ## ## Configuration File ## ## ## ############################################ ## (1) Define the location of your files: require "/opt/data/WWW/mgm/docs/fame/update/webtalk/webbbs.pl"; $dir = "/opt/data/WWW/mgm/docs/fame/update/webtalk/messages"; $cgiurl = "http://www.fame-la.com/update/webtalk/index.cgi"; ## (2) Tailor the appearance and functionality of your BBS: $bodyspec = "BACKGROUND=\"../sectionbg.gif\" BGCOLOR=\"#ffffff\" TEXT=\"#000000\""; $HeadLinesFile = ""; $HeaderFile = "/opt/data/WWW/mgm/docs/fame/update/webtalk/header.txt"; $FooterFile = "/opt/data/WWW/mgm/docs/fame/update/webtalk/footer.txt"; $MessageHeaderFile = "/opt/data/WWW/mgm/docs/fame/update/webtalk/header_msg.txt"; $MessageFooterFile = "/opt/data/WWW/mgm/docs/fame/update/webtalk/footer.txt"; $DefaultType = "By Threads, Reversed"; $DefaultTime = "Month"; $boardname = "FAME L.A. MESSAGE BOARD"; $InputColumns = 45; $InputRows = 10; $HourOffset = 0; $ArchiveOnly = 0; $AllowHTML = 0; $AutoQuote = 1; $SingleLineBreaks = 0; $UseCookies = 1; require "/opt/data/WWW/mgm/cgi-bin/cookielib/cookie.lib"; $UseAdmin = 1; $Max_Days = 30; $Max_Messages = 500; $ArchiveDir = ""; ## (3) Define your visitors' capabilities: $AllowUserDeletion = 0; $AllowEmailNotices = 1; $AllowPreview = 0; $AllowURLs = 0; $AllowPics = 0; $NaughtyWords = "shit fuck dick pussy"; ## (4) Define your e-mail notification features: $mailprog = '/usr/lib/sendmail'; $maillist_address = "famela\@mgm.com"; $email_list = 0; $HeaderOnly = 0; $AdminEmail = 0; &WebBBS; ## (5) If necessary, set up the WebAdverts configuration subroutine sub insertadvert { require "/full/path/to/ads_display.pl"; $adverts_dir = "/full/path/to/ads"; $display_cgi = "http://foo.com/ads/ads.pl"; $advertzone = $_[0]; $ADVshown = 0; $ADVUseLocking = 1; $ADVWrapCounter = 0; if ($advertzone eq "ShowAll") { &ADVshowall; } else { &ADVdisplayad; } }