############################################ ## ## ## WebBBS ## ## by Darryl Burgdorf ## ## (e-mail burgdorf@awsd.com) ## ## ## ## version: 4.33 ## ## last modified: 6/8/00 ## ## copyright (c) 2000 ## ## ## ## latest version is available from ## ## http://awsd.com/scripts/ ## ## ## ############################################ # In the sections below, define the configuration variables which # will determine how your forum(s) will look and function. If you're # running more than one forum, this file should contain the "default" # settings common to the majority; specific settings can, of course, # be redefined in the configuration files for specific forums, in # cases where you don't want them all behaving identically. ############################################## ## You MUST define the following variables! ## ############################################## ## (1) Specify the locations of your WebBBS files: $scripts_dir = "/cgi-bin"; $webbbs_basic = "webbbs_basic.pl"; $webbbs_form = "webbbs_form.pl"; $webbbs_index = "webbbs_index.pl"; $webbbs_misc = "webbbs_misc.pl"; $webbbs_post = "webbbs_post.pl"; $webbbs_profile = "webbbs_profile.pl"; $webbbs_read = "webbbs_read.pl"; $webbbs_rebuild = "webbbs_rebuild.pl"; $webbbs_text = "webbbs_text.pl"; ## (2) Define your e-mail notification features: $mailprog = '/usr/sbin/sendmail'; $WEB_SERVER = ""; $SMTP_SERVER = ""; $admin_name = "Mike"; $maillist_address = "mike\@hardwarepros.com"; $notification_address = "mike\@hardwarepros.com"; $email_list = 1; $private_list = 0; $HeaderOnly = 1; # use Socket; # use Net::SMTP; ################################################################# ## You MAY define the following variables, but do not have to! ## ################################################################# ## (3) Tailor the appearance and functionality of your BBS: # BEGIN { @AnyDBM_File::ISA = qw (DB_File) } $DBMType = 0; $SpellCheckerID = "0532115747"; $SpellCheckerPath = "/cgi-bin/sproxy.cgi"; $SpellCheckerJS = ""; $SpellCheckerLang = "en"; $UserProfileDir = "../web/users"; $UserProfileURL = "http://www.hardwarepros.com/users"; $MaxGraphicSize = 20; $MetaFile = "bbsmeta.txt"; $HeaderFile = "bbsheader.txt"; $FooterFile = "bbsfooter.txt"; $MessageHeaderFile = "bbsheader.txt"; $MessageFooterFile = "bbsfooter.txt"; $SSIRootDir = ""; $bodyspec = "bgcolor=\"#000000\" class=\"forum\" link=\"#008400\" vlink=\"#808080\" alink=\"#FF0000\" topmargin=\"0\" leftmargin=\"0\" style=\"font-family: Verdana\""; $fontspec = "FACE=\"Verdana\""; $navbarspec = "BORDER=0 CELLSPACING=0 CELLPADDING=6 BGCOLOR=\"#eeeeee\""; $navbarfontspec = "FACE=\"Verdana\""; $tablespec = "BORDER=0 CELLSPACING=0 CELLPADDING=3 BGCOLOR=\"#eeeeee\""; $tablefontspec = "FACE=\"Verdana\" COLOR=\"#000000\""; $ListBullets = 1; @SubjectPrefixes = (); $MessageOpenCode = "
"; $MessageCloseCode = "
"; $NewOpenCode = "NEW:"; $NewCloseCode = ""; $AdminOpenCode = "ADMIN!"; $AdminCloseCode = ""; $UseLocking = 1; $RefreshTime = 5; $UseFrames = ""; $BBSFrame = "_parent"; $WelcomePage = ""; $Moderated = 0; $SearchURL = ""; $TopNPosters = 10; %Navbar_Links = ( 'Hardware Pros Home Page','http://www.hardwarepros.com' ); $SepPostFormIndex = 0; $SepPostFormRead = 0; $DefaultType = "By Threads, Mixed"; $DefaultTime = "1 Month(s)"; $PaginateGuestbook = 0; $printboardname = 1; $DateConfig = "%DY%, %dy% %MO% %YR%, at %hr%:%mn% %am%"; $IndexEntryLines = 2; $InputColumns = 50; $InputRows = 10; $HourOffset = 0; $ArchiveOnly = 0; $SingleLineBreaks = 1; $AutoQuote = 0; $AutoQuoteChar = ":"; $AutoHotlink = 1; %SmileyCode = (); %FormatCode = (); $NM_Telltale = "*NM*"; $Pic_Telltale = "*PIC*"; $ThreadSpacer = ""; $GuestbookSpacer = ""; $DisplayEmail = 1; $ResolveIPs = 1; $DisplayIPs = 0; $DisplayViews = 1; $UseCookies = 1; ## (4) Define your visitors' capabilities: $MaxMessageSize = 50; $MaxInputLength = 50; $LockRemoteUser = 0; $AllowUserDeletion = 0; $AllowEmailNotices = 1; $AllowPreview = 1; $AllowHTML = 1; $AllowURLs = 1; $AllowPics = 1; $AllowProfileHTML = 0; $AllowProfileURLs = 1; $AllowProfilePics = 1; $SaveLinkInfo = 1; $AllowUserPrefs = 1; $AllowNewThreads = 1; $AllowResponses = 1; $NaughtyWordsFile = ""; $CensorPosts = 0; $ShowPosterIP = 1; $BannedIPsFile = ""; $BanLevel = 1; ####################################### ## Do NOT remove the following line! ## ####################################### 1;