<?php
# Mantis - a php based bugtracking system
# Copyright (C) 2000 - 2002 Kenzaburo Ito -
kenito@300baud.org
# Copyright (C) 2002 - 2005 Mantis Team -
mantisbt-dev@lists.sourceforge.net
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
# --------------------------------------------------------
# $Id: config_inc.php.sample,v 1.16.14.1 2006/10/29 00:34:44 vboctor Exp $
# --------------------------------------------------------
# This sample file contains the essential files that you MUST
# configure to your specific settings. You may override settings
# from config_defaults_inc.php by assigning new values in this file
# Rename this file to config_inc.php after configuration.
###########################################################################
# CONFIGURATION VARIABLES
###########################################################################
# In general the value OFF means the feature is disabled and ON means the
# feature is enabled. Any other cases will have an explanation.
# Look in
http://manual.mantisbugtracker.com/ or config_defaults_inc.php for more
# detailed comments.
# --- database variables ---------
$g_hostname = 'db.abc.com';
$g_db_type = 'mysql';
$g_database_name = 'abc';
$g_db_username = 'abc';
$g_db_password = 'abc123';
# --- email variables -------------
$g_administrator_email = '
hm@abc.com';
$g_webmaster_email = '
it@abc.com';
# the "From: " field in emails
$g_from_email = '
noreply@abc.com';
# the return address for bounced mail
$g_return_path_email = '
it@abc.com, hm@.abc.com';
# --- file upload settings --------
# This is the master setting to disable *all* file uploading functionality
#
# The default value is ON but you must make sure file uploading is enabled
# in PHP as well. You may need to add "file_uploads = TRUE" to your php.ini.
$g_allow_file_upload = ON;
# --- file signup settings --------
# allow users to signup for their own accounts.
# Mail settings must be correctly configured in order for this to work
$g_allow_signup = OFF;
## CUSTOM GLOBAL VARIABLES TO UNBRAND MANTIS
## $g_application_homepage = '
http://your.domain.com/'; [^] //e.g.
http://bugs.mantisbt.org [^]
$g_application_title = 'ABC HelpDesk'; //e.g. Mantis Bug Tracker
##$g_application_logo = 'images/your_logo.jpg'; //This is the header logo, rename and point to the correct location
$g_company_name = 'ABC'; //e.g. Mantis
## $g_company_homepage = '
http://www.domain.com/'; [^] //e.g.
http://www.mantisbt.org [^]
## $g_powered_by_logo = 'images/powered_by.gif'; //This is the footer logo, rename and point to the correct location
?>