#!/usr/bin/perl ############################################ ## ## ## WebBBS ## ## by Darryl Burgdorf ## ## ## ## Configuration File ## ## ## ############################################ ## (1) Define the location of your files: require "/var/web/cgi-bin/webbbsf.pl"; $dir = "/home/httpd/html/renegade/CRSLiberty"; $cgiurl = "http://www.renegade-wing.com/CRSLiberty/index.cgi"; ## (2) Tailor the appearance and functionality of your BBS: $bodyspec = "TEXT=\"#C0C0C0\" BGCOLOR=\"#000000\" LINK=\"#21B31A\" VLINK=\"#46874C\" ALINK=\"#FF0000\" BACKGROUND=\"b-star.gif\""; $HeadLinesFile = "head.txt"; $HeaderFile = "header.txt"; $FooterFile = "footer.txt"; $MessageHeaderFile = ""; $MessageFooterFile = ""; $DefaultType = "By Threads, Reversed"; $DefaultTime = "Year"; $boardimage = ""; $boardname = "Ready Room"; $SuppressBoardName = "1"; $InputColumns = 40; $InputRows = 15; $HourOffset = 0; $ArchiveOnly = 0; $AllowHTML = 1; $AutoQuote = 1; $SingleLineBreaks = 1; $UseCookies = 1; require "cookie.lib"; $UseAdmin = 1; $Max_Days = 7; $Max_Messages = 500; $ArchiveDir = ""; ## (3) Define your visitors' capabilities: $AllowUserDeletion = 1; $AllowEmailNotices = 1; $AllowPreview = 1; $AllowURLs = 1; $AllowPics = 1; $NaughtyWords = ""; ## (4) Define your e-mail notification features: $mailprog = '/bin/mail'; $maillist_address = "Jalb_k\@renegade-wing.com"; $email_list = 2; $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]; # $ADVUseLocking = 1; # $ADVLogIP = 0; # $NonSSI = 0; # $DefaultBanner = ""; # $ADVNoPrint = 1; # &ADVsetup; #} #