Skip to content

Commit

Permalink
M config_defaults_inc.php
Browse files Browse the repository at this point in the history
- Added a link to the manual.

M config_inc.php.sample
- Some minor changes to default values to be consistent with config_defaults_inc.php
- Added a link to the manual.


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2223 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Aug 17, 2003
1 parent 26fe8f5 commit 3525264
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
4 changes: 3 additions & 1 deletion config_defaults_inc.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: config_defaults_inc.php,v 1.123 2003-08-05 13:12:07 vboctor Exp $
# $Id: config_defaults_inc.php,v 1.124 2003-08-17 22:29:52 vboctor Exp $
# --------------------------------------------------------


Expand All @@ -23,6 +23,8 @@
# In general a value of OFF means the feature is disabled and ON means the
# feature is enabled. Any other cases will have an explanation.

# For more details see http://mantisbt.sourceforge.net/manual/

################################
# Mantis Database Settings
################################
Expand Down
22 changes: 9 additions & 13 deletions config_inc.php.sample
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: config_inc.php.sample,v 1.9 2003-01-18 02:14:12 jfitzell Exp $
# $Id: config_inc.php.sample,v 1.10 2003-08-17 22:29:52 vboctor Exp $
# --------------------------------------------------------

# This sample file contains the essential files that you MUST
Expand All @@ -19,10 +19,10 @@
# CONFIGURATION VARIABLES
###########################################################################

# In general a value of 0 means the feature is disabled and 1 means the
# 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 configuration.html or config_defaults_inc.php for more
# Look in http://mantisbt.sourceforge.net/manual or config_defaults_inc.php for more
# detailed comments.

# --- database variables ---------
Expand All @@ -35,27 +35,23 @@
$g_database_name = "bugtracker";

# --- email variables -------------
$g_administrator_email = "administrator@nowhere";
$g_webmaster_email = "webmaster@nowhere";
$g_administrator_email = 'administrator@example.com';
$g_webmaster_email = 'webmaster@example.com';

# the "From: " field in emails
$g_from_email = "noreply@nowhere";
$g_from_email = 'noreply@example.com';

# the "To: " address all emails are sent. This can be a mailing list or archive address.
# Actual users are emailed via the bcc: fields
$g_to_email = "nobody@nowhere";
$g_to_email = 'nobody@example.com';

# the return address for bounced mail
$g_return_path_email = "admin@nowhere";
$g_return_path_email = 'admin@example.com';

# --- login method ----------------
# CRYPT or PLAIN or MD5 or LDAP or BASIC_AUTH
$g_login_method = MD5;

# --- using MS IIS ----------------
# set to ON if you use IIS
$g_use_iis = ON;

# --- email vars ------------------
# set to OFF to disable email check
# These should be OFF for Windows installations
Expand All @@ -68,4 +64,4 @@
# 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;
?>
?>

0 comments on commit 3525264

Please sign in to comment.