#!/usr/bin/perl ############################################ ## ## ## WebBBS ## ## by Darryl Burgdorf ## ## ## ## Configuration File ## ## ## ############################################ ## (1) Define the location of your files: require "/home/arkzin/public_html/oxyd/webbbs.pl"; $dir = "/home/arkzin/public_html/oxyd/forum/"; $cgiurl = "http://www.ljudmila.org/~arkzin/oxyd/forum/index.cgi"; ## (2) Tailor the appearance and functionality of your BBS: $bodyspec = "BGCOLOR=\"#ffffff\" TEXT=\"#000000\" LINK=\"#000000\" ALINK=\"#ffffff\" VLINK=\"#777777\" "; $HeadLinesFile = ""; $HeaderFile = "header.txt"; $FooterFile = "footer.txt"; $MessageHeaderFile = "mheader.txt"; $MessageFooterFile = ""; $DefaultType = "By Threads, Reversed"; $DefaultTime = "Month"; $boardname = "BULLOX - Oxyd's Bulletin Board"; $InputColumns = 60; $InputRows = 12; $HourOffset = 0; $ArchiveOnly = 0; $AllowHTML = 1; $AutoQuote = 0; $SingleLineBreaks = 1; $UseCookies = 0; ## require "/home/arkzin/public_html/oxyd/forum/cookie.lib"; $UseAdmin = 1; $Max_Days = 60; $Max_Messages = 500; $ArchiveDir = "/home/arkzin/public_html/oxyd/forum/old"; ## (3) Define your visitors' capabilities: $AllowUserDeletion = 0; $AllowEmailNotices = 0; $AllowPreview = 1; $AllowURLs = 1; $AllowPics = 1; $NaughtyWords = ""; ## (4) Define your e-mail notification features: $mailprog = '/usr/sbin/sendmail'; $maillist_address = "webbbs\@foo.com"; $email_list = 0; $HeaderOnly = 0; $AdminEmail = 1; &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; }