#!/usr/local/bin/perl ############################################ ## ## ## WebBBS ## ## by Darryl Burgdorf ## ## ## ## Configuration File ## ## ## ############################################ $cell_space='        '; $SPACE='      '; $Bullet=''; ## (1) Define the location of your files: $home_path="/home/sheizaf/public_html/board"; $dir = "/home/sheizaf/public_html/board/ecbrosh"; $cgiurl = "http://econ.haifa.ac.il/~sheizaf/board/ecbrosh.cgi"; require "$home_path/webbbs.pl"; require "$home_path/webbbs_text.pl"; require "$home_path/heb_fix.pl"; ## (2) Tailor the appearance and functionality of your BBS: $UseLocking = 1; $bodyspec = "BGCOLOR=\"lightblue\" TEXT=\"#000000\""; $messagespec = ""; $newspec = ""; $NewGraphicURL = "new.gif"; $HeadLinesFile = ""; $HeaderFile = "$dir/header.txt"; $FooterFile = "$dir/footer.txt"; $MessageHeaderFile = "$dir/header.txt"; $MessageFooterFile = "$dir/footer.txt"; $UseFrames = ""; $BBSFrame = "_parent"; $WelcomePage = ""; $Admin_Link_Name = ""; $Admin_Link_URL = ""; $SepPostForm = 0; $DefaultType = "By Threads"; $DefaultTime = "Archive"; $boardname = "Haifa University GSOB -- שורב תצובק"; $InputColumns = 80; $InputRows = 10; $HourOffset = 0; $ArchiveOnly = 0; $AllowHTML = 1; $AutoQuote = 0; $SingleLineBreaks = 1; $DisplayIPs = 1; $UseCookies = 1; require "$home_path/cookie.lib"; $Max_Days = 0; $Max_Messages = 0; $ArchiveDir = "/home/sheizaf/public_html/board/ecbrosh/expired"; ## (3) Define your visitors' capabilities: $MaxMessageSize = 50; $LockRemoteUser = 0; $AllowUserDeletion = 1; $AllowEmailNotices = 0; $AllowPreview = 1; $AllowURLs = 0; $AllowPics = 0; $AllowUserPrefs = 1; $AllowResponses = 1; $NaughtyWords = ""; $CensorPosts = 0; $BannedIPs = ""; ## (4) Define your e-mail notification features: $mailprog = '/usr/sbin/sendmail'; $WEB_SERVER = ""; $SMTP_SERVER = ""; $maillist_address = "sheizaf\@econ.haifa.ac.il"; $notification_address = "sheizaf\@econ.haifa.ac.il"; $email_list = 0; $private_list = 0; $HeaderOnly = 0; # Print the CGI response header, required for all HTML output # Note the extra \n, to send the blank line # print "Content-type: text/html\n\n" ; &WebBBS; exit;