#!/usr/bin/perl -w
#

#######################################################################
#                     Application Information                          #
########################################################################

# Application Name: config.txt
# Application Authors: Edward Malahov
# Version: 1.0
# Last Modified: 20 March 2000


# InstaPak for InstaBase - with special password additions
# Not for duplication or distribution
# Ezenet Inc.  Copyright (C) 2000.


# Read in core INSTAbase variables
#
########################################################################
#                     Application Code                                 #
########################################################################
#
#
# 
############################################################
#
#
# $database_file - enter the full path where the database html file
# is going to be located on the system

$database_file = '/var/spool/news/htdocs/ins/web-ready/sample71/insta.html';

# $siteurl - enter your URL address
# the main URL of youe web site

$siteurl = 'http://www.instabase.com';

# $sitename - your Web Site name
#

$sitename = 'INSTAbase';

# Your email address if you want to receive the 
# feedback from your users
$email_address = 'support@instabase.com';

# $DIRbgcolor - the directory name where your background image
# is going to be after the name of the URL host

$DIRbgcolor = "$siteurl/web-ready/sample71/";

# $border - size of your border of InstaBase engine
$border = 0;

# $date_format - enter the date format from 0 to 4
# mm/dd/yy = 0
# m/d/yy = 1
# mm/dd/yy = 2
# mm/dd/yyyy = 3
# yy/mm/dd = 4
# dd-Mon-yy = 5

$date_format = 0;

# Enter the URL where you want to redirect your users
# after submission.
$main_page = 'http://www.instabase.com/web-ready/sample71/insta.html';

# enter the URL of your instabase cgi script
$URL_script = 'http://www.instabase.com/cgi-bin/insta.cgi';

# Enter the color of your text for search, what color you whan it to be seen
$search_color = 'FF0000';

# Enter your administrator password no more then 10 charectors
$admin_passwd = 'my_passwd';

# Enter the password for your users for each record 
# no more then 10 charectors each

@passwd = ( "none",
#record 1
"passwd1",
#record 2
"passwd2",
#record 3
"passwd3",
#record 4
"passwd4",
#record 5
"no password",
#record 6
"record6" );

# or you could enter the passwords individually
# example for record #12: 
@passwd[12] = "record12";
