#!/usr/bin/perl # # CYCLONIC WEBMAIL ENGINE - Version 4.0 (Release) # Copyright (c) STALLION Networking 1998-2001 # ########################################################################### # # File: cyclonic.conf # # Action: This file contains information # about your Cyclonic Installation. # # You will need to edit the Directories # and other options in this file for # Cyclonic to work correctly on your Server. # ########################################################################### # Mail Server Information ########################################################################### # The Domain Name $popdomain = "www.bigbill.ca"; # The SMTP Server to use $smtpserver = "smtp.bigbill.ca"; # The POP Server to use $popserver = "mail.bigbill.ca"; # The Address of your Web Sites Homepage $homepage = "http://www.bigbill.ca"; # # General Page Information ########################################################################### # The title for the Web Pages $title = "Web Based E-Mail"; # The Default text to put at the bottom of each message sent $defaultsig = ""; # The Outer Table Colour (usually dark) $tablec1 = "#203D64"; # The Inner Table Colour (usually light) $tablec2 = "#203D64"; # The Number of Banners you have available $bannerno = "10"; # The User Quota to apply to Accounts (in KB) $quota = "50000"; # # Directory and Path Information ########################################################################### # The location of the cyclonic script on the Web Server $cyclonic = "/webmail/cyclonic.pl"; # The location of the linkhandler script on the Web Server $lhandler = "/webmail/linkhandler.pl"; # The location of the Cyclonic Images directory via Web Server $webmail = "/webmail/images"; # Location on Server where the Attachments will be saved to $attachdir = "/home/cluster1/data/c/r/a905715/public_html/webmail/attachments/"; # Location via Web Server of the attachments $attachweb = "/webmail/attachments"; # Location via Web Server of the help pages $helppages = "/webmail/help/index.html"; # These are the base directories used by the script $userdat = "/home/cluster1/data/c/r/a905715/public_html/webmail/users/"; $base_sid_directory = "/home/cluster1/data/c/r/a905715/public_html/webmail/sids/"; $base_log_directory = "/home/cluster1/data/c/r/a905715/public_html/webmail/logs"; $base_require_directory = "/home/cluster1/data/c/r/a905715/public_html/webmail/require/"; return 1;