#!/usr/bin/perl -w


# This file contains configurable settings for story.cgi program.
# Change these values as needed for your particular site.

#
# Interactive Story program written by Valerie Mates, valerie@cyberspace.org
# 1/15/98.
#
# This program is freeware, but, if you use it, please leave my URL
# in the page footer and send me an email message to let me know that you
# are using it.  I'm curious about where my programs travel to.  Thanks!
#

# This is the name of the directory where the story data is stored.
# You'll need to make sure it exists -- that the web server can write to it.
# By default, this program uses a directory called "story" under the
# cgi-bin directory.
$story_dir = "./";

# URL of image directory, or "." if they are in the same directory
# as this script:
$image_url = ".";

# Your own web page URL
#   Example:    $host_url = "http://www.yourhost.com/~yourlogin";
$host_url = "http://www.cosmosfactory.org/";

# Email address to send mail to when each new page is posted.
# Leave blank to not send e-mail.   Put a \ before any @ characters!
#   Example:    $announce_to = "you\@somewhere.com";
$announce_to = "";

# Location of your sendmail program, if you want the program to send
# you mail about each new response.
$sendmail = "/usr/lib/sendmail";

# URL of header image, and the image's width and height and alt text.
$header_image = "$image_url/an_interactive_story.gif";
$image_width = 498;
$image_height = 131;
$image_alt = "An Interactive Story";
