#!/usr/bin/perl
# I N S T R U C T I O N S
# Change the $newurl value to your new UBB URL
# do not move or change the 'quotes' or final semicolon
# CHANGE THIS VALUE BEFORE UPLOADING IN ASCII
$newurl = 'http://www.hostboard.com/cgi-bin/ultimatebb.cgi';
print ("Content-type: text/htmlnn");
print<<THIS;
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=x-user-defined">
<meta http-equiv="Refresh" content="2; URL=$newurl">
<META NAME="Author" CONTENT="UBB">
<META NAME="GENERATOR" CONTENT="Mozilla/4.03 [en] (Win95; I) [Netscape]">
<TITLE>Bulletin Board Moved!</TITLE>
</HEAD>
<BODY>
<UL><FONT FACE="Arial,Helvetica"><FONT SIZE=+1></FONT></FONT> <FONT FACE="Arial,Helvetica"><FONT SIZE=+1></FONT></FONT>
<FONT FACE="Arial,Helvetica"><FONT SIZE=+1>Hostboard has moved
to our new software platform located at</FONT></FONT><FONT
FACE="Arial,Helvetica"><FONT SIZE=+1></FONT></FONT>
<FONT FACE="Arial,Helvetica"><FONT SIZE=+1><A HREF="$newurl">$newurl</A></FONT></FONT>
<FONT FACE="Arial,Helvetica"><FONT SIZE=+1><A HREF="$newurl"></A></FONT></FONT> <FONT FACE="Arial,Helvetica"><FONT SIZE=+1></FONT></FONT>
<FONT FACE="Arial,Helvetica"><FONT SIZE=+1>Please Update your bookmarks</FONT></FONT><FONT FACE="Arial,Helvetica"><FONT SIZE=+1></FONT></FONT>
<FONT FACE="Arial,Helvetica"><FONT SIZE=+1>Click <A HREF="$newurl">here</A>
if your browser does not take you there automatically in a few seconds.</FONT></FONT></UL>
</BODY>
</HTML>
THIS
exit;