$password = "whatever"; # This keeps others from posting from another website, or lets them # if you choose to. Only these domains will be able to post news. # Note that you should include all addresses to your site. Domain Only!! @referers = ('vets.com,veterans.org'); # the next four items express the physical path or url to these directories. # $newsdir is where the news.dat will reside. $newsdir = "./newsboard"; # $htmldir is where you want the generated articles to go. $htmldir = "./newsboard"; # $htmlurl is the url to the directory where the generated articles are. $htmlurl = "http://vets.com/newsboard/"; # $templatedir is the directory of your template files. Some servers don't like serving html pages from the cgi-bin. $templatedir = "./"; # directory to the counter file. $counter_file = "./form.counter"; # Set $display = 1 to display the links from newest to last. Set to 0 to display oldest first. $display = "1"; # Set the number of items to display. This effectively # makes the script first in first out. $cut = "10"; # Set $mail = "1"; to get an email everytime someone adds an article. Set to 0 to disable mail. $mail = "1"; # Whoever the mail is from. Notice the \@ . $from = "news\@vets.com"; # Whoever you want to notify that an article was posted. $to = "editor\@vets.com"; # self explanatory. $subject = "News submission"; # the next few items are for the tables and fonts. $align = "center"; $fontsize = "4"; $fontface = "Verdana"; $fontcolor = "black"; $border = "0"; $cellspacing = "5"; $cellpadding = "5"; # you can add your own variables into this file and then # reference them in your html documents if you want. # do not remove 1;