<?php
# Helpdesk software Hesk
# Version: 0.93b from July 5, 2005
# File name: hesk_settings.inc.php
# File last modified: July 3, 2005
# Written 23rd April 2005 by Klemen Stirn (
info@phpjunkyard.com)
#
http://www.PHPJunkYard.com
##############################################################################
# COPYRIGHT NOTICE #
# Copyright 2005 PHPJunkYard All Rights Reserved. #
# #
# The Hesk may be used and modified free of charge by anyone AS LONG AS #
# THIS COPYRIGHT NOTICE AND ALL THE COMMENTS REMAIN INTACT. By using this #
# code you agree to indemnify Klemen Stirn from any liability that might #
# arise from it's use. #
# #
# Selling the code for this program or any portion of it without prior #
# written consent is expressly forbidden. #
# #
# Obtain permission before redistributing this software over the Internet or #
# in any other medium. In all cases copyright and header must remain intact. #
# This Copyright is in full effect in any country that has International #
# Trade Agreements with the United States of America or with #
# the European Union. #
##############################################################################
/*** Please read the README.HTM file for more information on these settings ***/
/* Website settings */
$hesk_settings['site_title']="Information Technology Services";
$hesk_settings['site_url']="http://********/";
/* Help desk settings */
$hesk_settings['hesk_url']="http://*****/hesk";
$hesk_settings['hesk_title']="Information Technology Request System";
$hesk_settings['max_listings']="15";
$hesk_settings['language']="english";
$hesk_settings['print_font_size']="12";
/* Contacts */
$hesk_settings['support_mail']="**********.com";
$hesk_settings['webmaster_mail']="*************.com";
$hesk_settings['noreply_mail']="****************";
/* Server info */
$hesk_settings['server_path'] = "'C:\hesk093\'";
/* Database settings */
$hesk_settings['database_host'] = "localhost";
$hesk_settings['database_name'] = "****";
$hesk_settings['database_user'] = "****";
$hesk_settings['database_pass'] = "****";
#############################
# DO NOT EDIT BELOW #
#############################
if (!defined('IN_SCRIPT')) {die('Invalid attempt!');}
error_reporting(E_ALL ^ E_NOTICE);
$hesk_settings['hesk_version']='0.93';
?>