#!/usr/bin/perl5 ############################################ ## ## ## WebBBS ## ## by Darryl Burgdorf ## ## ## ## Configuration File ## ## ## ############################################ ## (1) Define the location of your files: require "/www/htdocs/odja/cgi-bin/webbbs.pl"; require "/www/htdocs/odja/cgi-bin/webbbs_text.pl"; $dir = "/usr/local/etc/httpd/htdocs/odja/htdocs/cafe/qscaudio/messages"; $cgiurl = "http://www.djcafe.com/qscaudio.cgi"; ## (2) Tailor the appearance and functionality of your BBS: $UseLocking = 1; $bodyspec = ""; $messagespec = ""; $NewCode = "NEW: "; $HeadLinesFile = "/www/htdocs/odja/htdocs/cafe/headline.txt"; $HeaderFile = "/www/htdocs/odja/htdocs/cafe/qscheader.txt"; $FooterFile = "/www/htdocs/odja/htdocs/cafe/indexfooter.txt"; $MessageHeaderFile = "/www/htdocs/odja/htdocs/cafe/messageheader.txt"; $MessageFooterFile = "/www/htdocs/odja/htdocs/cafe/messagefooter.txt"; $UseFrames = ""; $BBSFrame = ""; $WelcomePage = ""; $Admin_Link_Name = ""; $Admin_Link_URL = ""; $SepPostForm = 0; $DefaultType = "By Threads, Reversed"; $DefaultTime = "Week"; $boardname = "The QSC Audio Forum"; $printboardname = 0; $DateConfig = ""; $IndexEntryLines = 2; $InputColumns = 70; $InputRows = 15; $HourOffset = 0; $ArchiveOnly = 0; $AllowHTML = 1; $SingleLineBreaks = 0; $AutoQuote = 0; $AutoQuoteChar = ":"; $AutoHotlink = 0; $DisplayIPs = 0; $DisplayViews = 1; $UseCookies = 1; require "/www/htdocs/odja/cgi-bin/cookie.lib"; $Max_Days = 0; $Max_Messages = 0; $ArchiveDir = ""; ## (3) Define your visitors' capabilities: $MaxMessageSize = 50; $MaxInputLength = 50; $LockRemoteUser = 0; $AllowUserDeletion = 0; $AllowEmailNotices = 1; $AllowPreview = 1; $AllowURLs = 1; $AllowPics = 1; $SaveLinkInfo = 0; $AllowUserPrefs = 1; $AllowResponses = 1; $NaughtyWords = ""; $CensorPosts = 0; $BannedIPs = ""; ## (4) Define your e-mail notification features: $mailprog = '/bin/sendmail'; $WEB_SERVER = ""; $SMTP_SERVER = ""; $maillist_address = "mike\@djcafe.com"; $notification_address = "mike\@djcafe.com"; $email_list = 1; $private_list = 0; $HeaderOnly = 0; # use Socket; &WebBBS; ## (5) If necessary, set up the WebAdverts configuration subroutine sub insertadvert { require "/usr/local/etc/httpd/htdocs/odja/cgi-bin/ads/ads_display.pl"; $adverts_dir = "/usr/local/etc/httpd/htdocs/odja/cgi-bin/ads"; $display_cgi = "http://www.djcafe.com/cgi-bin/ads/ads_display.pl"; $advertzone = $_[0]; $ADVUseLocking = 1; $ADVLogIP = 0; $DefaultBanner = ""; $ADVNoPrint = 1; &ADVsetup; }