#!/usr/bin/perl
#######################################################
$domain_name = "arnep.de";
$location = "http://arnep.de/postcard/";
$basepicurl = "http://arnep.de/postcard/pictures/";
$cgi = "http://arnep.de/cgi-bin/card.cgi";
$cards = "$ENV{DOCUMENT_ROOT}/postcard/cards/";
$basepicdir = "$ENV{DOCUMENT_ROOT}/postcard/pictures/";
$preview1 = "$ENV{DOCUMENT_ROOT}/postcard/preview1.html";
$preview2 = "$ENV{DOCUMENT_ROOT}/postcard/preview2.html";
$makecard = "$ENV{DOCUMENT_ROOT}/postcard/makecard.html";
$thank_you = "$ENV{DOCUMENT_ROOT}/postcard/thankyou.html";
$error = "$ENV{DOCUMENT_ROOT}/postcard/error.html";
$email1 = "$ENV{DOCUMENT_ROOT}/postcard/email1.txt";
$email2 = "$ENV{DOCUMENT_ROOT}/postcard/email2.txt";
$mailprog = '/usr/lib/sendmail';
$MAX_DAYS = '30';

@picsallowed = ('gif','jpg','jpeg');

$subject1 = "eine Postkarte für Dich!";
$subject2 = "Die Postkarte wurde gelesen!";

$uploadmax = '50';
$allowed = '1500';

require "$ENV{DOCUMENT_ROOT}/cgi-bin/program.cgi";