#!/usr/bin/perl
#######################################################
#  Absolute Redirect Clickthrough Tracker version 1.0
#
#     	Created by: Design Werks 
# 		Email: delay@pobox.com
#		Web: http://scripts.vrmatrix.com
#
#######################################################
#
#
# COPYRIGHT NOTICE:
#
# Copyright 2000 Design Werks  All Rights Reserved.
#
# This program is being distributed as ad-ware.  It may be used 
# free of charge, so long as this copyright notice and 
# the program remain intact. Please also send me an email,
# and let me know where you are using this script. 
#
# By using this program you agree to indemnify Design Werks from any liability.
#
# Selling the code for this program without prior written consent is
# expressly forbidden.  Obtain permission before redistributing this
# program over the Internet or in any other medium.  In all cases
# copyright and header must remain intact.
#
# Warranty Disclaimer
# --------------------
# THIS SOFTWARE AND THE ACCOMPANYING FILES ARE AVAILABLE "AS IS" AND
# WITHOUT WARRANTIES AS TO PERFORMANCE OR MERCHANTABILITY OR ANY
# OTHER WARRANTIES WHETHER EXPRESSED OR IMPLIED.
#
# The user assumes the entire risk of using the program.  
# We do not warrant that it works on all servers and will not be held liable
# for anything, including but not limited to, misusage, error, or loss of data.
#
# Use at your own risk!
######################################################

# password to enter admin area.  This needs to be changed from "test"
$admin = "test";

# Logs  
$logfile = "log.current";
$logold = "log.old";

#shorten referer url to just domain set this to 1 - for full referer url
#info set to 2 (i.e. If set to 1 your referer will just be http://www.whatever.com if set to 2 
#it will have full page info http://www.whaever.com/directory/page1.html

$shortenreferer = 2;  

#DO NOT edit below this line......

$AdminPassword = $admin; 
$LogFileName = $logfile; 
$OldLogFileName = $logold; 
$ShortDomainReferer = $shortenreferer; 

