#!/usr/local/bin/perl ############################################ ## ## ## WebBBS ## ## by Darryl Burgdorf ## ## ## ## Configuration File ## ## ## ############################################ ## (1) Define the location of your files: require "/users/vantage/vegaspages.com/cgi-bin-vantage/webbbs.pl"; require "/users/vantage/vegaspages.com/cgi-bin-vantage/webbbs_text.pl"; ## $dir is used to store the messages and data for the board. ## You can run multiple boards as long as you use a different $dir $dir = "/users/vantage/imagination.org/folk_board"; $cgiurl = "http://www.imagination.org/folk_board/index.cgi"; ## (2) Tailor the appearance and functionality of your BBS: $UseLocking = 1; $bodyspec = "BGCOLOR=\"#ffffff\" TEXT=\"#000000\""; $messagespec = ""; $NewCode = "NEW: "; $HeadLinesFile = ""; $HeaderFile = "title_link.txt"; $FooterFile = "footer_link.txt"; $MessageHeaderFile = ""; $MessageFooterFile = ""; $UseFrames = ""; $BBSFrame = "_parent"; $WelcomePage = ""; $Admin_Link_Name = ""; $Admin_Link_URL = ""; $SepPostForm = 0; $DefaultType = "By Threads"; $DefaultTime = ""; $boardname = "Imagination.org Disscussion Forum"; $printboardname = 1; $DateConfig = ""; $IndexEntryLines = 2; $InputColumns = 80; $InputRows = 15; $HourOffset = 0; $ArchiveOnly = 0; $AllowHTML = 0; $SingleLineBreaks = 0; $AutoQuote = 1; $AutoQuoteChar = ">"; $AutoHotlink = 0; $DisplayIPs = 0; $DisplayViews = 0; $UseCookies = 1; require "/users/vantage/vegaspages.com/cgi-bin-vantage/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 = 0; $AllowPics = 0; $SaveLinkInfo = 0; $AllowUserPrefs = 1; $AllowResponses = 1; $NaughtyWords = ""; $CensorPosts = 0; $BannedIPs = ""; ## (4) Define your e-mail notification features: $mailprog = ""; $WEB_SERVER = ""; $SMTP_SERVER = ""; $maillist_address = "vantage\@wizard.com"; $notification_address = "vantage\@wizard.com"; $email_list = 0; $private_list = 0; $HeaderOnly = 0; # use Socket; &WebBBS;