1998-09-15 21:49:26 +00:00
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
1999-11-01 23:33:56 +00:00
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
1998-09-15 21:49:26 +00:00
# The Original Code is the Bugzilla Bug Tracking System.
1999-11-01 23:33:56 +00:00
#
1998-09-15 21:49:26 +00:00
# The Initial Developer of the Original Code is Netscape Communications
1999-11-01 23:33:56 +00:00
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
1998-09-15 21:49:26 +00:00
# Contributor(s): Terry Weissman <terry@mozilla.org>
1999-08-05 20:02:20 +00:00
# Dawn Endico <endico@mozilla.org>
1999-12-02 23:21:42 +00:00
# Dan Mosedale <dmose@mozilla.org>
2000-03-10 16:25:03 +00:00
# Joe Robins <jmrobins@tgix.com>
2002-08-27 04:28:05 +00:00
# Jacob Steenhagen <jake@bugzilla.org>
2002-08-11 14:12:33 +00:00
# J. Paul Reed <preed@sigkill.com>
2002-08-29 09:25:54 +00:00
# Bradley Baetz <bbaetz@student.usyd.edu.au>
2004-01-14 13:59:16 +00:00
# Joseph Heenan <joseph@heenan.me.uk>
2004-07-20 22:41:22 +00:00
# Erik Stambaugh <erik@dasbistro.com>
2000-12-22 23:01:30 +00:00
#
1998-09-15 21:49:26 +00:00
# This file defines all the parameters that we have a GUI to edit within
# Bugzilla.
2001-03-19 21:17:48 +00:00
# ATTENTION!!!! THIS FILE ONLY CONTAINS THE DEFAULTS.
# You cannot change your live settings by editing this file.
2002-08-29 09:25:54 +00:00
# Only adding new parameters is done here. Once the parameter exists, you
2001-03-19 21:17:48 +00:00
# must use %baseurl%/editparams.cgi from the web to edit the settings.
2005-02-02 16:06:51 +00:00
# This file is included via |do|, mainly because of circular dependency issues
2002-08-29 09:25:54 +00:00
# (such as globals.pl -> Bugzilla::Config -> this -> Bugzilla::Config)
# which preclude compile time loading.
2002-05-08 23:20:22 +00:00
2002-08-29 09:25:54 +00:00
# Those issues may go away at some point, and the contents of this file
2005-02-02 16:06:51 +00:00
# moved somewhere else. Please try to avoid more dependencies from here
2002-08-29 09:25:54 +00:00
# to other code
2002-08-11 14:12:33 +00:00
2002-08-29 09:25:54 +00:00
# (Note that these aren't just added directly to Bugzilla::Config, because
# the backend prefs code is separate to this...)
2002-08-11 14:12:33 +00:00
2002-08-29 09:25:54 +00:00
use strict ;
use vars qw( @param_list ) ;
2003-08-28 22:59:14 +00:00
use File::Spec ; # for find_languages
2005-01-16 13:09:58 +00:00
use Socket ;
2002-08-11 14:12:33 +00:00
2003-11-22 03:50:42 +00:00
use Bugzilla::Config qw( :DEFAULT $templatedir $webdotdir ) ;
2005-01-16 13:09:58 +00:00
use Bugzilla::Util ;
2003-11-22 03:50:42 +00:00
2002-08-29 09:25:54 +00:00
# Checking functions for the various values
# Some generic checking functions are included in Bugzilla::Config
2002-08-11 14:12:33 +00:00
2005-01-16 13:09:58 +00:00
sub check_sslbase {
my $ url = shift ;
if ( $ url ne '' ) {
if ( $ url !~ m #^https://([^/]+).*/$#) {
return "must be a legal URL, that starts with https and ends with a slash." ;
}
my $ host = $ 1 ;
if ( $ host =~ /:\d+$/ ) {
return "must not contain a port." ;
}
local * SOCK ;
my $ proto = getprotobyname ( 'tcp' ) ;
socket ( SOCK , PF_INET , SOCK_STREAM , $ proto ) ;
my $ sin = sockaddr_in ( 443 , inet_aton ( $ host ) ) ;
if ( ! connect ( SOCK , $ sin ) ) {
return "Failed to connect to " . html_quote ( $ host ) .
":443, unable to enable SSL." ;
}
}
return "" ;
}
2002-08-29 09:25:54 +00:00
sub check_priority {
my ( $ value ) = ( @ _ ) ;
& :: GetVersionTable ( ) ;
if ( lsearch ( \ @ ::legal_priority , $ value ) < 0 ) {
return "Must be a legal priority value: one of " .
join ( ", " , @ ::legal_priority ) ;
2002-08-11 14:12:33 +00:00
}
2002-08-29 09:25:54 +00:00
return "" ;
2002-08-11 14:12:33 +00:00
}
2004-09-24 20:41:30 +00:00
sub check_severity {
my ( $ value ) = ( @ _ ) ;
& :: GetVersionTable ( ) ;
if ( lsearch ( \ @ ::legal_severity , $ value ) < 0 ) {
return "Must be a legal severity value: one of " .
join ( ", " , @ ::legal_severity ) ;
}
return "" ;
}
2004-08-28 08:58:14 +00:00
sub check_platform {
my ( $ value ) = ( @ _ ) ;
& :: GetVersionTable ( ) ;
if ( lsearch ( [ '' , @ ::legal_platform ] , $ value ) < 0 ) {
return "Must be empty or a legal platform value: one of " .
join ( ", " , @ ::legal_platform ) ;
}
return "" ;
}
sub check_opsys {
my ( $ value ) = ( @ _ ) ;
& :: GetVersionTable ( ) ;
if ( lsearch ( [ '' , @ ::legal_opsys ] , $ value ) < 0 ) {
return "Must be empty or a legal operating system value: one of " .
join ( ", " , @ ::legal_opsys ) ;
}
return "" ;
}
2002-08-29 09:25:54 +00:00
sub check_shadowdb {
my ( $ value ) = ( @ _ ) ;
$ value = trim ( $ value ) ;
if ( $ value eq "" ) {
2002-08-11 14:12:33 +00:00
return "" ;
}
1998-09-15 21:49:26 +00:00
2002-12-20 23:35:29 +00:00
if ( ! Param ( 'shadowdbhost' ) ) {
return "You need to specify a host when using a shadow database" ;
2002-11-19 07:19:34 +00:00
}
2002-12-20 23:35:29 +00:00
2003-01-10 23:51:38 +00:00
# Can't test existence of this because ConnectToDatabase uses the param,
2002-12-20 23:35:29 +00:00
# but we can't set this before testing....
# This can really only be fixed after we can use the DBI more openly
2002-11-19 07:19:34 +00:00
return "" ;
}
2002-08-29 09:25:54 +00:00
sub check_urlbase {
my ( $ url ) = ( @ _ ) ;
if ( $ url !~ m: ^ http . * / $ : ) {
return "must be a legal URL, that starts with http and ends with a slash." ;
1998-09-15 21:49:26 +00:00
}
return "" ;
}
2002-08-29 09:25:54 +00:00
sub check_webdotbase {
2000-02-17 21:41:39 +00:00
my ( $ value ) = ( @ _ ) ;
$ value = trim ( $ value ) ;
if ( $ value eq "" ) {
return "" ;
}
2002-08-29 09:25:54 +00:00
if ( $ value !~ /^https?:/ ) {
if ( ! - x $ value ) {
return "The file path \"$value\" is not a valid executable. Please specify the complete file path to 'dot' if you intend to generate graphs locally." ;
}
# Check .htaccess allows access to generated images
2003-11-22 03:50:42 +00:00
if ( - e "$webdotdir/.htaccess" ) {
open HTACCESS , "$webdotdir/.htaccess" ;
2003-04-24 21:17:31 +00:00
if ( ! grep ( / \\\.png\$/ , <HTACCESS> ) ) {
2003-11-22 03:50:42 +00:00
return "Dependency graph images are not accessible.\nAssuming that you have not modified the file, delete $webdotdir/.htaccess and re-run checksetup.pl to rectify.\n" ;
2002-08-29 09:25:54 +00:00
}
close HTACCESS ;
2000-02-17 21:41:39 +00:00
}
}
return "" ;
}
1998-09-15 21:49:26 +00:00
2002-10-02 11:57:26 +00:00
sub check_netmask {
my ( $ mask ) = @ _ ;
my $ res = check_numeric ( $ mask ) ;
return $ res if $ res ;
if ( $ mask < 0 || $ mask > 32 ) {
return "an IPv4 netmask must be between 0 and 32 bits" ;
}
# Note that if we changed the netmask from anything apart from 32, then
# existing logincookies which aren't for a single IP won't work
# any more. We can't know which ones they are, though, so they'll just
# take space until they're preiodically cleared, later.
return "" ;
}
2004-07-20 22:41:22 +00:00
sub check_user_verify_class {
2003-03-22 04:47:35 +00:00
# doeditparams traverses the list of params, and for each one it checks,
# then updates. This means that if one param checker wants to look at
# other params, it must be below that other one. So you can't have two
2005-02-02 16:06:51 +00:00
# params mutually dependent on each other.
2003-03-22 04:47:35 +00:00
# This means that if someone clears the LDAP config params after setting
# the login method as LDAP, we won't notice, but all logins will fail.
# So don't do that.
2004-07-20 22:41:22 +00:00
my ( $ list , $ entry ) = @ _ ;
for my $ class ( split /,\s*/ , $ list ) {
my $ res = check_multi ( $ class , $ entry ) ;
return $ res if $ res ;
if ( $ class eq 'DB' ) {
# No params
} elsif ( $ class eq 'LDAP' ) {
eval "require Net::LDAP" ;
return "Error requiring Net::LDAP: '$@'" if $@ ;
return "LDAP servername is missing" unless Param ( "LDAPserver" ) ;
return "LDAPBaseDN is empty" unless Param ( "LDAPBaseDN" ) ;
} else {
return "Unknown user_verify_class '$class' in check_user_verify_class" ;
}
2003-03-22 04:47:35 +00:00
}
return "" ;
}
2003-08-28 22:59:14 +00:00
sub check_languages {
2003-11-20 20:21:16 +00:00
my @ languages = split /[,\s]+/ , trim ( $ _ [ 0 ] ) ;
2003-08-28 22:59:14 +00:00
if ( ! scalar ( @ languages ) ) {
return "You need to specify a language tag."
}
foreach my $ language ( @ languages ) {
2003-11-22 03:50:42 +00:00
if ( ! - d "$templatedir/$language/custom"
&& ! - d "$templatedir/$language/default" ) {
2003-08-28 22:59:14 +00:00
return "The template directory for $language does not exist" ;
}
}
return "" ;
}
sub find_languages {
my @ languages = ( ) ;
2003-11-22 03:50:42 +00:00
opendir ( DIR , $ templatedir ) || return "Can't open 'template' directory: $!" ;
2003-08-28 22:59:14 +00:00
my @ langdirs = grep { /^[a-z-]+$/i } readdir ( DIR ) ;
closedir DIR ;
foreach my $ lang ( @ langdirs ) {
next if ( $ lang =~ /^CVS$/i ) ;
my $ deft_path = File::Spec - > catdir ( 'template' , $ lang , 'default' ) ;
my $ cust_path = File::Spec - > catdir ( 'template' , $ lang , 'custom' ) ;
push ( @ languages , $ lang ) if ( - d $ deft_path or - d $ cust_path ) ;
}
return join ( ', ' , @ languages ) ;
}
2002-08-29 09:25:54 +00:00
# OK, here are the parameter definitions themselves.
#
# Each definition is a hash with keys:
1998-09-15 21:49:26 +00:00
#
2002-08-29 09:25:54 +00:00
# name - name of the param
# desc - description of the param (for editparams.cgi)
# type - see below
# choices - (optional) see below
# default - default value for the param
# checker - (optional) checking function for validating parameter entry
# It is called with the value of the param as the first arg and a
# reference to the param's hash as the second argument
#
# The type value can be one of the following:
1998-09-15 21:49:26 +00:00
#
# t -- A short text entry field (suitable for a single line)
# l -- A long text field (suitable for many lines)
# b -- A boolean value (either 1 or 0)
2002-08-11 14:12:33 +00:00
# m -- A list of values, with many selectable (shows up as a select box)
2002-08-29 09:25:54 +00:00
# To specify the list of values, make the 'choices' key be an array
# reference of the valid choices. The 'default' key should be an array
# reference for the list of selected values (which must appear in the
2002-08-11 14:12:33 +00:00
# first anonymous array), i.e.:
2002-08-29 09:25:54 +00:00
# {
# name => 'multiselect',
# desc => 'A list of options, choose many',
# type => 'm',
# choices => [ 'a', 'b', 'c', 'd' ],
# default => [ 'a', 'd' ],
# checker => \&check_multi
# }
2002-08-11 14:12:33 +00:00
#
# Here, 'a' and 'd' are the default options, and the user may pick any
# combination of a, b, c, and d as valid options.
#
# &check_multi should always be used as the param verification function
# for list (single and multiple) parameter types.
#
# s -- A list of values, with one selectable (shows up as a select box)
2002-08-29 09:25:54 +00:00
# To specify the list of values, make the 'choices' key be an array
# reference of the valid choices. The 'default' key should be one of
# those values, i.e.:
# {
# name => 'singleselect',
# desc => 'A list of options, choose one',
# type => 's',
# choices => [ 'a', 'b', 'c' ],
# default => 'b',
# checker => \&check_multi
# }
#
2002-08-11 14:12:33 +00:00
# Here, 'b' is the default option, and 'a' and 'c' are other possible
# options, but only one at a time!
#
# &check_multi should always be used as the param verification function
# for list (single and multiple) parameter types.
1998-09-15 21:49:26 +00:00
2002-08-29 09:25:54 +00:00
# XXXX - would be nice for doeditparams to 'know' about types s and m, and call
# check_multi without it having to be explicitly specified here - bbaetz
@ param_list = (
{
name = > 'maintainer' ,
desc = > 'The email address of the person who maintains this installation ' .
'of Bugzilla.' ,
type = > 't' ,
default = > 'THE MAINTAINER HAS NOT YET BEEN SET'
} ,
2005-03-15 16:44:12 +00:00
{
name = > 'mailfrom' ,
desc = > 'The email address of the Bugzilla mail daemon. Some email systems ' .
'require this to be a valid email address.' ,
type = > 't' ,
default = > 'bugzilla-daemon'
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'urlbase' ,
desc = > 'The URL that is the common initial leading part of all Bugzilla ' .
'URLs.' ,
type = > 't' ,
2002-12-10 12:10:21 +00:00
default = > 'http://you-havent-visited-editparams.cgi-yet/' ,
2002-08-29 09:25:54 +00:00
checker = > \ & check_urlbase
} ,
2005-01-16 13:09:58 +00:00
{
name = > 'sslbase' ,
desc = > 'The URL that is the common initial leading part of all HTTPS ' .
'(SSL) Bugzilla URLs.' ,
type = > 't' ,
default = > '' ,
checker = > \ & check_sslbase
} ,
{
name = > 'ssl' ,
desc = > 'Controls when Bugzilla should enforce sessions to use HTTPS by ' .
'using <tt>sslbase</tt>.' ,
type = > 's' ,
choices = > [ 'never' , 'authenticated sessions' , 'always' ] ,
default = > 'never'
} ,
2003-01-23 23:34:10 +00:00
{
name = > 'languages' ,
desc = > 'A comma-separated list of RFC 1766 language tags. These ' .
'identify the languages in which you wish Bugzilla output ' .
'to be displayed. Note that you must install the appropriate ' .
'language pack before adding a language to this Param. The ' .
'language used is the one in this list with the highest ' .
2003-08-28 22:59:14 +00:00
'q-value in the user\'s Accept-Language header.<br>' .
'Available languages: ' . find_languages ( ) ,
2003-01-23 23:34:10 +00:00
type = > 't' ,
2003-08-28 22:59:14 +00:00
default = > 'en' ,
checker = > \ & check_languages
2003-01-23 23:34:10 +00:00
} ,
{
name = > 'defaultlanguage' ,
desc = > 'The UI language Bugzilla falls back on if no suitable ' .
'language is found in the user\'s Accept-Language header.' ,
type = > 't' ,
2003-08-28 22:59:14 +00:00
default = > 'en' ,
checker = > \ & check_languages
2003-01-23 23:34:10 +00:00
} ,
2005-01-16 20:43:22 +00:00
{
name = > 'cookiedomain' ,
desc = > 'The domain for Bugzilla cookies. Normally blank. ' .
'If your website is at "www.foo.com", setting this to ' .
'".foo.com" will also allow bar.foo.com to access ' .
'Bugzilla cookies. This is useful if you have more than ' .
'one hostname pointing at the same web server, and you ' .
'want them to share the Bugzilla cookie.' ,
type = > 't' ,
default = > ''
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'cookiepath' ,
2002-11-06 18:50:26 +00:00
desc = > 'Path, relative to your web document root, to which to restrict ' .
'Bugzilla cookies. Normally this is the URI portion of your URL ' .
'base. Begin with a / (single slash mark). For instance, if ' .
'Bugzilla serves from http://www.somedomain.com/bugzilla/, set ' .
'this parameter to /bugzilla/ . Setting it to / will allow ' .
'all sites served by this web server or virtual host to read ' .
2002-11-05 03:48:59 +00:00
'Bugzilla cookies.' ,
2002-08-29 09:25:54 +00:00
type = > 't' ,
default = > '/'
} ,
2002-11-27 16:00:44 +00:00
{
name = > 'timezone' ,
2002-12-16 06:28:14 +00:00
desc = > 'The timezone that your database server lives in. If set to "", ' .
'then the timezone won\'t be displayed with the timestamps.' ,
2002-11-27 16:00:44 +00:00
type = > 't' ,
default = > '' ,
} ,
2002-08-29 09:25:54 +00:00
{
2005-03-10 16:21:35 +00:00
name = > 'quip_list_entry_control' ,
desc = > 'Controls how easily users can add entries to the quip list.' .
'<ul><li>open - Users may freely add to the quip list, and ' .
'their entries will immediately be available for viewing.</li>' .
'<li>moderated - quips can be entered, but need to be approved ' .
'by an admin before they will be shown</li><li>closed - no new ' .
'additions to the quips list are allowed.</li></ul>' ,
2002-08-29 09:25:54 +00:00
type = > 's' ,
2005-03-10 16:21:35 +00:00
choices = > [ 'open' , 'moderated' , 'closed' ] ,
default = > 'open' ,
2002-08-29 09:25:54 +00:00
checker = > \ & check_multi
} ,
2004-08-20 21:49:20 +00:00
{
name = > 'useclassification' ,
desc = > 'If this is on, Bugzilla will associate each product with a ' .
'specific classification. But you must have "editclassification" ' .
'permissions enabled in order to edit classifications' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'showallproducts' ,
desc = > 'If this is on and useclassification is set, Bugzilla will add a' .
'"All" link in the "New Bug" page to list all available products' ,
type = > 'b' ,
default = > 0
} ,
2002-08-29 09:25:54 +00:00
{
2002-11-24 19:56:34 +00:00
name = > 'makeproductgroups' ,
2002-08-29 09:25:54 +00:00
desc = > 'If this is on, Bugzilla will associate a bug group with each ' .
'product in the database, and use it for querying bugs.' ,
type = > 'b' ,
default = > 0
} ,
{
2002-11-24 19:56:34 +00:00
name = > 'useentrygroupdefault' ,
2002-12-10 14:17:05 +00:00
desc = > 'If this is on, Bugzilla will use product bug groups by default ' .
'to restrict who can enter bugs. If this is on, users can see ' .
'any product to which they have entry access in search menus. ' .
'If this is off, users can see any product to which they have not ' .
'been excluded by a mandatory restriction.' ,
2002-08-29 09:25:54 +00:00
type = > 'b' ,
default = > 0
} ,
2002-11-19 07:19:34 +00:00
{
name = > 'shadowdbhost' ,
2002-12-20 23:35:29 +00:00
desc = > 'The host the shadow database is on.' ,
2002-11-19 07:19:34 +00:00
type = > 't' ,
default = > '' ,
} ,
{
name = > 'shadowdbport' ,
desc = > 'The port the shadow database is on. Ignored if ' .
'<tt>shadowdbhost</tt> is blank. Note: if the host is the local ' .
'machine, then MySQL will ignore this setting, and you must ' .
'specify a socket below.' ,
type = > 't' ,
default = > '3306' ,
checker = > \ & check_numeric ,
} ,
{
name = > 'shadowdbsock' ,
desc = > 'The socket used to connect to the shadow database, if the host ' .
'is the local machine. This setting is required because MySQL ' .
'ignores the port specified by the client and connects using ' .
'its compiled-in socket path (on unix machines) when connecting ' .
'from a client to a local server. If you leave this blank, and ' .
'have the database on localhost, then the <tt>shadowdbport</tt> ' .
'will be ignored.' ,
type = > 't' ,
default = > '' ,
} ,
# This entry must be _after_ the shadowdb{host,port,sock} settings so that
# they can be used in the validation here
2002-08-29 09:25:54 +00:00
{
name = > 'shadowdb' ,
desc = > 'If non-empty, then this is the name of another database in ' .
2002-12-20 23:35:29 +00:00
'which Bugzilla will use as a read-only copy of everything. ' .
2002-08-29 09:25:54 +00:00
'This is done so that long slow read-only operations can be used ' .
2002-12-20 23:35:29 +00:00
'against this db, and not lock up things for everyone else. This ' .
'database is on the <tt>shadowdbhost</tt>, and must exist. ' .
2003-01-10 23:51:38 +00:00
'Bugzilla does not update it, if you use this parameter, then ' .
2002-12-20 23:35:29 +00:00
'you need to set up replication for your database' ,
2002-08-29 09:25:54 +00:00
type = > 't' ,
default = > '' ,
checker = > \ & check_shadowdb
} ,
{
name = > 'LDAPserver' ,
desc = > 'The name (and optionally port) of your LDAP server. (e.g. ' .
'ldap.company.com, or ldap.company.com:portnum)' ,
type = > 't' ,
default = > ''
} ,
2003-03-22 04:47:35 +00:00
{
name = > 'LDAPbinddn' ,
desc = > 'If your LDAP server requires that you use a binddn and password ' .
'instead of binding anonymously, enter it here ' .
'(e.g. cn=default,cn=user:password). ' .
'Leave this empty for the normal case of an anonymous bind.' ,
type = > 't' ,
default = > ''
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'LDAPBaseDN' ,
desc = > 'The BaseDN for authenticating users against. (e.g. ' .
'"ou=People,o=Company")' ,
type = > 't' ,
default = > ''
} ,
2003-03-22 04:47:35 +00:00
{
name = > 'LDAPuidattribute' ,
desc = > 'The name of the attribute containing the user\'s login name.' ,
type = > 't' ,
default = > 'uid'
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'LDAPmailattribute' ,
desc = > 'The name of the attribute of a user in your directory that ' .
'contains the email address.' ,
type = > 't' ,
default = > 'mail'
} ,
2003-07-14 13:35:12 +00:00
{
name = > 'LDAPfilter' ,
desc = > 'LDAP filter to AND with the <tt>LDAPuidattribute</tt> for ' .
'filtering the list of valid users.' ,
type = > 't' ,
default = > '' ,
} ,
2004-08-11 13:53:46 +00:00
{
name = > 'auth_env_id' ,
desc = > 'Environment variable used by external authentication system ' .
'to store a unique identifier for each user. Leave it blank ' .
'if there isn\'t one or if this method of authentication ' .
'is not being used.' ,
type = > 't' ,
default = > '' ,
} ,
{
name = > 'auth_env_email' ,
desc = > 'Environment variable used by external authentication system ' .
'to store each user\'s email address. This is a required ' .
'field for environmental authentication. Leave it blank ' .
'if you are not going to use this feature.' ,
type = > 't' ,
default = > '' ,
} ,
{
name = > 'auth_env_realname' ,
desc = > 'Environment variable used by external authentication system ' .
'to store the user\'s real name. Leave it blank if there ' .
'isn\'t one or if this method of authentication is not being ' .
'used.' ,
type = > 't' ,
default = > '' ,
} ,
2004-07-20 22:41:22 +00:00
# XXX in the future:
#
# user_verify_class and user_info_class should have choices gathered from
# whatever sits in their respective directories
#
# rather than comma-separated lists, these two should eventually become
# arrays, but that requires alterations to editparams first
{
name = > 'user_info_class' ,
desc = > ' Mechanism ( s ) to be used for gathering a user \ ' s login information .
<add>
More than one may be selected . If the first one returns nothing ,
the second is tried , and so on . < br / >
The types are:
<dl>
<dt> CGI </dt>
<dd>
Asks for username and password via CGI form interface .
</dd>
2004-08-11 13:53:46 +00:00
<dt> Env </dt>
<dd>
Info for a pre - authenticated user is passed in system
environment variables .
</dd>
</dl> ' ,
2004-07-20 22:41:22 +00:00
type = > 's' ,
2004-08-11 13:53:46 +00:00
choices = > [ 'CGI' , 'Env' , 'Env,CGI' ] ,
2004-07-20 22:41:22 +00:00
default = > 'CGI' ,
checker = > \ & check_multi
} ,
2003-03-22 04:47:35 +00:00
{
2004-07-20 22:41:22 +00:00
name = > 'user_verify_class' ,
desc = > ' Mechanism ( s ) to be used for verifying ( authenticating ) information
gathered by user_info_class .
More than one may be selected . If the first one cannot find the
user , the second is tried , and so on . < br / >
The types are:
2003-03-22 04:47:35 +00:00
<dl>
<dt> DB </dt>
<dd>
Bugzilla \ ' s builtin authentication . This is the most common
choice .
</dd>
<dt> LDAP </dt>
<dd>
LDAP authentication using an LDAP server . This method is
experimental ; please see the Bugzilla documentation for more
information . Using this method requires additional parameters
to be set above .
</dd>
</dl> ' ,
type = > 's' ,
2004-07-20 22:41:22 +00:00
choices = > [ 'DB' , 'LDAP' , 'DB,LDAP' , 'LDAP,DB' ] ,
2003-03-22 04:47:35 +00:00
default = > 'DB' ,
2004-07-20 22:41:22 +00:00
checker = > \ & check_user_verify_class
2003-03-22 04:47:35 +00:00
} ,
2004-01-16 22:46:31 +00:00
{
name = > 'rememberlogin' ,
desc = > ' Controls management of session cookies
<ul>
<li> on - Session cookies never expire ( the user has to login only
once per browser ) . </li>
<li> off - Session cookies last until the users session ends ( the user
will have to login in each new browser session ) . </li>
<li> defaulton / defaultoff - Default behavior as described
above , but user can choose whether bugzilla will remember his
login or not . </li>
</ul> ' ,
type = > 's' ,
choices = > [ 'on' , 'defaulton' , 'defaultoff' , 'off' ] ,
default = > 'on' ,
checker = > \ & check_multi
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'mostfreqthreshold' ,
desc = > 'The minimum number of duplicates a bug needs to show up on the ' .
'<a href="duplicates.cgi">most frequently reported bugs page</a>. ' .
'If you have a large database and this page takes a long time to ' .
'load, try increasing this number.' ,
type = > 't' ,
default = > '2'
} ,
{
name = > 'mybugstemplate' ,
desc = > 'This is the URL to use to bring up a simple \'all of my bugs\' ' .
'list for a user. %userid% will get replaced with the login ' .
'name of a user.' ,
type = > 't' ,
default = > 'buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=%userid%&emailtype1=exact&emailassigned_to1=1&emailreporter1=1'
} ,
{
name = > 'shutdownhtml' ,
desc = > 'If this field is non-empty, then Bugzilla will be completely ' .
'disabled and this text will be displayed instead of all the ' .
'Bugzilla pages.' ,
type = > 'l' ,
default = > ''
} ,
2005-02-28 20:51:24 +00:00
{
2005-03-09 17:10:00 +00:00
name = > 'mail_delivery_method' ,
desc = > 'Defines how email is sent, or if it is sent at all.<br><ul>' .
'<li>\'sendmail\', \'smtp\' and \'qmail\' are all MTAs. ' .
'(only SMTP is available in Windows.)</li>' .
'<li>\'testfile\' is useful for debugging: all email is stored' .
'in data/mailer.testfile instead of being sent. For more ' .
'information, see the Mail::Mailer manual.</li>' .
'<li>\'none\' will completely disable email. Bugzilla continues ' .
'to act as though it is sending mail, but nothing is sent or ' .
'stored.</li></ul>' ,
2005-02-01 20:00:17 +00:00
type = > 's' ,
2005-03-07 17:53:01 +00:00
choices = > $^O =~ /MSWin32/i
2005-03-09 17:10:00 +00:00
? [ 'smtp' , 'testfile' , 'none' ]
: [ 'sendmail' , 'smtp' , 'qmail' , 'testfile' , 'none' ] ,
2005-02-01 20:00:17 +00:00
default = > 'sendmail' ,
checker = > \ & check_multi
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'sendmailnow' ,
2004-12-09 10:54:37 +00:00
desc = > 'Sites using anything older than version 8.12 of \'sendmail\' ' .
'can achieve a significant performance increase in the ' .
'UI -- at the cost of delaying the sending of mail -- by ' .
'disabling this parameter. Sites using \'sendmail\' 8.12 or ' .
'higher should leave this on, as they will see no benefit from ' .
'turning it off. Sites using an MTA other than \'sendmail\' ' .
'*must* leave it on, or no bug mail will be sent.' ,
2002-08-29 09:25:54 +00:00
type = > 'b' ,
2004-03-31 22:01:30 +00:00
default = > 1
2002-08-29 09:25:54 +00:00
} ,
2005-02-01 20:00:17 +00:00
{
name = > 'smtpserver' ,
desc = > 'The SMTP server address (if using SMTP for mail delivery).' ,
type = > 't' ,
default = > 'localhost'
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'passwordmail' ,
desc = > 'The email that gets sent to people to tell them their password.' .
'Within this text, %mailaddress% gets replaced by the person\'s ' .
'email address, %login% gets replaced by the person\'s login ' .
'(usually the same thing), and %password% gets replaced by their ' .
'password. %<i>anythingelse</i>% gets replaced by the ' .
'definition of that parameter (as defined on this page).' ,
type = > 'l' ,
2005-03-15 16:44:12 +00:00
default = > ' From: % mailfrom %
2000-02-07 22:11:55 +00:00
To: % mailaddress %
Subject: Your Bugzilla password .
2005-03-15 16:44:12 +00:00
X - Bugzilla - Type: admin
2000-02-07 22:11:55 +00:00
To use the wonders of Bugzilla , you can use the following:
E - mail address: % login %
Password: % password %
To change your password , go to:
% urlbase % userprefs . cgi
2002-08-29 09:25:54 +00:00
'
} ,
{
name = > 'newchangedmail' ,
desc = > 'The email that gets sent to people when a bug changes. Within ' .
'this text, %to% gets replaced with the e-mail address of the ' .
'person recieving the mail. %bugid% gets replaced by the bug ' .
'number. %diffs% gets replaced with what\'s changed. ' .
'%neworchanged% is "New:" if this mail is reporting a new bug or ' .
'empty if changes were made to an existing one. %summary% gets ' .
'replaced by the summary of this bug. %reasonsheader% is ' .
'replaced by an abbreviated list of reasons why the user is ' .
'getting the email, suitable for use in an email header (such ' .
'as X-Bugzilla-Reason). %reasonsbody% is replaced by text that ' .
'explains why the user is getting the email in more user ' .
2005-01-24 05:16:24 +00:00
'friendly text than %reasonsheader%. ' .
'%threadingmarker% will become either a Message-ID line (for ' .
'new-bug messages) or a In-Reply-To line (for bug-change ' .
'messages). ' .
'%<i>anythingelse</i>% gets ' .
2002-08-29 09:25:54 +00:00
'replaced by the definition of that parameter (as defined on ' .
'this page).' ,
type = > 'l' ,
2005-03-15 16:44:12 +00:00
default = > ' From: % mailfrom %
2000-01-23 01:03:15 +00:00
To: % to %
2001-04-06 17:40:49 +00:00
Subject: [ Bug % bugid % ] % neworchanged %% summary %
2005-01-24 05:16:24 +00:00
% threadingmarker %
2001-08-11 23:16:16 +00:00
X - Bugzilla - Reason: % reasonsheader %
2005-03-15 16:44:12 +00:00
X - Bugzilla - Type: newchanged
2000-01-23 01:03:15 +00:00
% urlbase % show_bug . cgi ? id = % bugid %
2001-08-13 17:06:38 +00:00
% diffs %
2001-08-11 23:16:16 +00:00
2003-04-08 23:29:35 +00:00
- - % space %
2003-04-09 06:29:37 +00:00
Configure bugmail: % urlbase % userprefs . cgi ? tab = email
% reasonsbody % '
2002-08-29 09:25:54 +00:00
} ,
{
name = > 'whinedays' ,
desc = > 'The number of days that we\'ll let a bug sit untouched in a NEW ' .
'state before our cronjob will whine at the owner.' ,
type = > 't' ,
default = > 7
} ,
{
name = > 'whinemail' ,
2004-01-14 13:59:16 +00:00
desc = > 'The email that gets sent to anyone who has a NEW or REOPENED ' .
'bug that hasn\'t been touched for more than <b>whinedays</b>. ' .
'Within this text, %email% gets replaced by the offender\'s ' .
'email address. %userid% gets replaced by the offender\'s ' .
'bugzilla login (which, in most installations, is the same as ' .
'the email address.) %<i>anythingelse</i>% gets replaced by the ' .
'definition of that parameter (as defined on this page).<p> It ' .
'is a good idea to make sure this message has a valid From: ' .
'address, so that if the mail bounces, a real person can know ' .
'that there are bugs assigned to an invalid address.' ,
2002-08-29 09:25:54 +00:00
type = > 'l' ,
2005-03-15 16:44:12 +00:00
default = > ' From: % mailfrom %
1998-09-15 21:49:26 +00:00
To: % email %
Subject: Your Bugzilla buglist needs attention .
2005-03-15 16:44:12 +00:00
X - Bugzilla - Type: whine
1998-09-15 21:49:26 +00:00
[ This e - mail has been automatically generated . ]
You have one or more bugs assigned to you in the Bugzilla
bugsystem ( % urlbase % ) that require
attention .
2004-01-14 13:59:16 +00:00
All of these bugs are in the NEW or REOPENED state , and have not
been touched in % whinedays % days or more . You need to take a look
at them , and decide on an initial action .
1998-09-15 21:49:26 +00:00
Generally , this means one of three things:
2002-08-29 09:25:54 +00:00
( 1 ) You decide this bug is really quick to deal with ( like , it \ ' s INVALID ) ,
1998-09-15 21:49:26 +00:00
and so you get rid of it immediately .
2002-08-29 09:25:54 +00:00
( 2 ) You decide the bug doesn \ ' t belong to you , and you reassign it to someone
else . ( Hint: if you don \ ' t know who to reassign it to , make sure that
1998-09-15 21:49:26 +00:00
the Component field seems reasonable , and then use the " Reassign bug to
owner of selected component " option . )
2002-08-29 09:25:54 +00:00
( 3 ) You decide the bug belongs to you , but you can \ ' t solve it this moment .
1998-09-15 21:49:26 +00:00
Just use the "Accept bug" command .
2004-01-14 13:59:16 +00:00
To get a list of all NEW / REOPENED bugs , you can use this URL ( bookmark
it if you like ! ) :
1998-09-15 21:49:26 +00:00
2004-01-14 13:59:16 +00:00
% urlbase % buglist . cgi ? bug_status = NEW & bug_status = REOPENED & assigned_to = % userid %
1998-09-15 21:49:26 +00:00
Or , you can use the general query page , at
2005-02-24 20:36:03 +00:00
% urlbase % query . cgi
1998-09-15 21:49:26 +00:00
2002-08-29 09:25:54 +00:00
Appended below are the individual URLs to get to all of your NEW bugs that
haven \ ' t been touched for a week or more .
You will get this message once a day until you \ ' ve dealt with these bugs !
'
} ,
{
name = > 'defaultquery' ,
desc = > 'This is the default query that initially comes up when you ' .
2004-12-02 22:24:05 +00:00
'access the advanced query page. It\'s in URL parameter ' .
'format, which makes it hard to read. Sorry!' ,
2002-08-29 09:25:54 +00:00
type = > 't' ,
2002-11-10 09:01:08 +00:00
default = > 'bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailassigned_to1=1&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailqa_contact2=1&order=Importance&long_desc_type=substring'
2002-08-29 09:25:54 +00:00
} ,
{
name = > 'letsubmitterchoosepriority' ,
desc = > 'If this is on, then people submitting bugs can choose an ' .
'initial priority for that bug. If off, then all bugs initially ' .
'have the default priority selected below.' ,
type = > 'b' ,
default = > 1
} ,
{
name = > 'defaultpriority' ,
desc = > 'This is the priority that newly entered bugs are set to.' ,
type = > 't' ,
default = > 'P2' ,
checker = > \ & check_priority
} ,
2004-09-24 20:41:30 +00:00
{
name = > 'defaultseverity' ,
desc = > 'This is the severity that newly entered bugs are set to.' ,
type = > 't' ,
default = > 'normal' ,
checker = > \ & check_severity
} ,
2004-08-28 08:58:14 +00:00
{
name = > 'defaultplatform' ,
desc = > 'This is the platform that is preselected on the bug ' .
'entry form.<br>' .
'You can leave this empty: ' .
'Bugzilla will then use the platform that the browser ' .
'reports to be running on as the default.' ,
type = > 't' ,
default = > '' ,
checker = > \ & check_platform
} ,
{
name = > 'defaultopsys' ,
desc = > 'This is the operating system that is preselected on the bug ' .
'entry form.<br>' .
'You can leave this empty: ' .
'Bugzilla will then use the operating system that the browser ' .
'reports to be running on as the default.' ,
type = > 't' ,
default = > '' ,
checker = > \ & check_opsys
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'usetargetmilestone' ,
desc = > 'Do you wish to use the Target Milestone field?' ,
type = > 'b' ,
default = > 0
} ,
2005-02-15 21:51:12 +00:00
{
name = > 'letsubmitterchoosemilestone' ,
desc = > 'If this is on, then people submitting bugs can choose the ' .
'Target Milestone for that bug. If off, then all bugs initially ' .
'have the default milestone for the product being filed in.' ,
type = > 'b' ,
default = > 1
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'musthavemilestoneonaccept' ,
desc = > 'If you are using Target Milestone, do you want to require that ' .
'the milestone be set in order for a user to ACCEPT a bug?' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'useqacontact' ,
desc = > 'Do you wish to use the QA Contact field?' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'usestatuswhiteboard' ,
desc = > 'Do you wish to use the Status Whiteboard field?' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'usevotes' ,
desc = > 'Do you wish to allow users to vote for bugs? Note that in order ' .
'for this to be effective, you will have to change the maximum ' .
'votes allowed in a product to be non-zero in ' .
'<a href="editproducts.cgi">the product edit page</a>.' ,
type = > 'b' ,
default = > 1
} ,
{
name = > 'usebugaliases' ,
desc = > 'Do you wish to use bug aliases, which allow you to assign bugs ' .
'an easy-to-remember name by which you can refer to them?' ,
type = > 'b' ,
default = > 0
} ,
2004-07-27 16:33:41 +00:00
{
name = > 'usevisibilitygroups' ,
desc = > 'Do you wish to restrict visibility of users to members of ' .
'specific groups?' ,
type = > 'b' ,
default = > 0
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'webdotbase' ,
desc = > 'It is possible to show graphs of dependent bugs. You may set ' .
' this parameter to any of the following:
<ul>
<li> A complete file path to \ ' dot \ ' ( part of < a
href = "http://www.graphviz.org" > GraphViz </a> ) will generate the graphs
locally . </li>
<li> A URL prefix pointing to an installation of the < a
href = "http://www.research.att.com/~north/cgi-bin/webdot.cgi" > webdot
package </a> will generate the graphs remotely . </li>
<li> A blank value will disable dependency graphing . </li>
</ul>
The default value is a publically - accessible webdot server . If you change
this value , make certain that the webdot server can read files from your
2003-11-22 03:50:42 +00:00
webdot directory . On Apache you do this by editing the . htaccess file ,
2002-08-29 09:25:54 +00:00
for other systems the needed measures may vary . You can run checksetup . pl
to recreate the . htaccess file if it has been lost . ' ,
type = > 't' ,
default = > 'http://www.research.att.com/~north/cgi-bin/webdot.cgi/%urlbase%' ,
checker = > \ & check_webdotbase
} ,
{
name = > 'emailregexp' ,
desc = > 'This defines the regexp to use for legal email addresses. The ' .
'default tries to match fully qualified email addresses. Another ' .
'popular value to put here is <tt>^[^@]+$</tt>, which means ' .
'"local usernames, no @ allowed."' ,
type = > 't' ,
2004-02-26 00:07:23 +00:00
default = > q:^[\\w\\.\\+\\-=]+@[\\w\\.\\-]+\\.[\\w\\-]+$: ,
2002-08-29 09:25:54 +00:00
checker = > \ & check_regexp
} ,
{
name = > 'emailregexpdesc' ,
desc = > 'This describes in english words what kinds of legal addresses ' .
'are allowed by the <tt>emailregexp</tt> param.' ,
type = > 'l' ,
default = > 'A legal address must contain exactly one \'@\', and at least ' .
'one \'.\' after the @.'
} ,
{
name = > 'emailsuffix' ,
desc = > 'This is a string to append to any email addresses when actually ' .
'sending mail to that address. It is useful if you have changed ' .
'the <tt>emailregexp</tt> param to only allow local usernames, ' .
'but you want the mail to be delivered to username@my.local.hostname.' ,
type = > 't' ,
default = > ''
} ,
2002-12-09 00:24:43 +00:00
{
name = > 'createemailregexp' ,
desc = > 'This defines the regexp to use for email addresses that are ' .
'permitted to self-register using a "New Account" feature. The ' .
'default (.*) permits any account matching the emailregexp ' .
'to be created. If this parameter is left blank, no users ' .
'will be permitted to create their own accounts and all accounts ' .
'will have to be created by an administrator' ,
type = > 't' ,
default = > q:.*: ,
checker = > \ & check_regexp
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'voteremovedmail' ,
desc = > 'This is a mail message to send to anyone who gets a vote removed ' .
'from a bug for any reason. %to% gets replaced by the person who ' .
'used to be voting for this bug. %bugid% gets replaced by the ' .
'bug number. %reason% gets replaced by a short reason describing ' .
'why the vote(s) were removed. %votesremoved%, %votesold% and ' .
'%votesnew% is the number of votes removed, before and after ' .
'respectively. %votesremovedtext%, %votesoldtext% and ' .
'%votesnewtext% are these as sentences, eg "You had 2 votes on ' .
'this bug." %count% is also supported for backwards ' .
'compatibility. %<i>anythingelse</i>% gets replaced by the ' .
'definition of that parameter (as defined on this page).' ,
type = > 'l' ,
2005-03-15 16:44:12 +00:00
default = > ' From: % mailfrom %
1999-10-07 23:54:52 +00:00
To: % to %
2001-08-25 00:12:12 +00:00
Subject: [ Bug % bugid % ] Some or all of your votes have been removed .
2005-03-15 16:44:12 +00:00
X - Bugzilla - Type: voteremoved
1999-10-07 23:54:52 +00:00
2001-08-25 00:12:12 +00:00
Some or all of your votes have been removed from bug % bugid % .
1999-10-07 23:54:52 +00:00
2001-08-25 00:12:12 +00:00
% votesoldtext %
% votesnewtext %
1999-10-07 23:54:52 +00:00
2001-08-25 00:12:12 +00:00
Reason: % reason %
2000-02-17 05:15:23 +00:00
1999-10-07 23:54:52 +00:00
% urlbase % show_bug . cgi ? id = % bugid %
2002-08-29 09:25:54 +00:00
'
} ,
{
name = > 'allowbugdeletion' ,
desc = > 'The pages to edit products and components and versions can delete ' .
'all associated bugs when you delete a product (or component or ' .
'version). Since that is a pretty scary idea, you have to turn on ' .
'this option before any such deletions will ever happen.' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'allowemailchange' ,
desc = > 'Users can change their own email address through the preferences. ' .
'Note that the change is validated by emailing both addresses, so ' .
'switching this option on will not let users use an invalid address.' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'allowuserdeletion' ,
2005-03-07 18:11:37 +00:00
desc = > q{ The user editing pages are capable of letting you delete user
accounts .
Bugzilla will issue a warning in case you ' d run into
inconsistencies when you ' re about to do so ,
but such deletions remain kinda scary .
So , you have to turn on this option before any such deletions
will ever happen . } ,
2002-08-29 09:25:54 +00:00
type = > 'b' ,
default = > 0
} ,
{
name = > 'browserbugmessage' ,
desc = > 'If bugzilla gets unexpected data from the browser, in addition to ' .
'displaying the cause of the problem, it will output this HTML as ' .
'well.' ,
type = > 'l' ,
default = > 'this may indicate a bug in your browser.'
} ,
2004-01-31 00:12:10 +00:00
{
name = > 'commentoncreate' ,
desc = > 'If this option is on, the user needs to enter a description ' .
'when entering a new bug' ,
type = > 'b' ,
default = > 0
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'commentonaccept' ,
desc = > 'If this option is on, the user needs to enter a short comment if ' .
'he accepts the bug' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonclearresolution' ,
desc = > 'If this option is on, the user needs to enter a short comment if ' .
'the bug\'s resolution is cleared' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonconfirm' ,
desc = > 'If this option is on, the user needs to enter a short comment ' .
'when confirming a bug' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonresolve' ,
desc = > 'If this option is on, the user needs to enter a short comment if ' .
'the bug is resolved' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonreassign' ,
desc = > 'If this option is on, the user needs to enter a short comment if ' .
'the bug is reassigned' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonreassignbycomponent' ,
desc = > 'If this option is on, the user needs to enter a short comment if ' .
'the bug is reassigned by component' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonreopen' ,
desc = > 'If this option is on, the user needs to enter a short comment if ' .
'the bug is reopened' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonverify' ,
desc = > 'If this option is on, the user needs to enter a short comment if ' .
'the bug is verified' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonclose' ,
desc = > 'If this option is on, the user needs to enter a short comment if ' .
'the bug is closed' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'commentonduplicate' ,
desc = > 'If this option is on, the user needs to enter a short comment ' .
'if the bug is marked as duplicate' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'supportwatchers' ,
desc = > 'Support one user watching (ie getting copies of all related ' .
'email about) another\'s bugs. Useful for people going on ' .
'vacation, and QA folks watching particular developers\' bugs' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'move-enabled' ,
desc = > 'If this is on, Bugzilla will allow certain people to move bugs ' .
'to the defined database.' ,
type = > 'b' ,
default = > 0
} ,
{
name = > 'move-button-text' ,
desc = > 'The text written on the Move button. Explain where the bug is ' .
'being moved to.' ,
type = > 't' ,
default = > 'Move To Bugscape'
} ,
{
name = > 'move-to-url' ,
desc = > 'The URL of the database we allow some of our bugs to be moved to.' ,
type = > 't' ,
default = > ''
} ,
{
name = > 'move-to-address' ,
desc = > 'To move bugs, an email is sent to the target database. This is ' .
'the email address that database uses to listen for incoming bugs.' ,
type = > 't' ,
default = > 'bugzilla-import'
} ,
{
name = > 'moved-from-address' ,
desc = > 'To move bugs, an email is sent to the target database. This is ' .
'the email address from which this mail, and error messages are ' .
'sent.' ,
type = > 't' ,
default = > 'bugzilla-admin'
} ,
{
name = > 'movers' ,
desc = > 'A list of people with permission to move bugs and reopen moved ' .
'bugs (in case the move operation fails).' ,
type = > 't' ,
default = > ''
} ,
{
name = > 'moved-default-product' ,
desc = > 'Bugs moved from other databases to here are assigned to this ' .
'product.' ,
type = > 't' ,
default = > ''
} ,
{
name = > 'moved-default-component' ,
desc = > 'Bugs moved from other databases to here are assigned to this ' .
'component.' ,
type = > 't' ,
default = > ''
} ,
# The maximum size (in bytes) for patches and non-patch attachments.
# The default limit is 1000KB, which is 24KB less than mysql's default
# maximum packet size (which determines how much data can be sent in a
# single mysql packet and thus how much data can be inserted into the
# database) to provide breathing space for the data in other fields of
# the attachment record as well as any mysql packet overhead (I don't
# know of any, but I suspect there may be some.)
{
name = > 'maxpatchsize' ,
desc = > 'The maximum size (in kilobytes) of patches. Bugzilla will not ' .
'accept patches greater than this number of kilobytes in size.' .
'To accept patches of any size (subject to the limitations of ' .
'your server software), set this value to zero.' ,
type = > 't' ,
default = > '1000' ,
checker = > \ & check_numeric
} ,
{
name = > 'maxattachmentsize' ,
desc = > 'The maximum size (in kilobytes) of non-patch attachments. ' .
'Bugzilla will not accept attachments greater than this number' .
'of kilobytes in size. To accept attachments of any size ' .
'(subject to the limitations of your server software), set this ' .
'value to zero.' ,
type = > 't' ,
default = > '1000' ,
checker = > \ & check_numeric
} ,
2005-02-20 17:03:10 +00:00
{
name = > 'maxlocalattachment' ,
desc = > 'The maximum size (in Megabytes) of attachments identified by ' .
'the user as "Big Files" to be stored locally on the webserver. ' .
'If set to zero, attachments will never be kept on the local ' .
'filesystem.' ,
type = > 't' ,
default = > '0' ,
checker = > \ & check_numeric
} ,
2004-07-06 01:12:29 +00:00
{
name = > 'chartgroup' ,
desc = > 'The name of the group of users who can use the "New Charts" ' .
'feature. Administrators should ensure that the public categories ' .
2004-08-29 21:29:36 +00:00
'and series definitions do not divulge confidential information ' .
2004-07-06 01:12:29 +00:00
'before enabling this for an untrusted population. If left blank, ' .
'no users will be able to use New Charts.' ,
type = > 't' ,
2004-08-29 21:29:36 +00:00
default = > 'editbugs'
2004-07-06 01:12:29 +00:00
} ,
2002-08-29 09:25:54 +00:00
{
name = > 'insidergroup' ,
desc = > 'The name of the group of users who can see/change private ' .
'comments and attachments.' ,
type = > 't' ,
default = > ''
} ,
2002-10-02 11:57:26 +00:00
2002-10-13 04:26:24 +00:00
{
name = > 'timetrackinggroup' ,
desc = > 'The name of the group of users who can see/change time tracking ' .
'information.' ,
type = > 't' ,
default = > ''
} ,
2002-10-02 11:57:26 +00:00
{
name = > 'loginnetmask' ,
desc = > 'The number of bits for the netmask used if a user chooses to ' .
'allow a login to be valid for more than a single IP. Setting ' .
'this to 32 disables this feature.<br>' .
'Note that enabling this may decrease the security of your system.' ,
type = > 't' ,
default = > '32' ,
checker = > \ & check_netmask
} ,
2002-10-25 03:59:35 +00:00
2002-11-27 14:46:06 +00:00
{
name = > 'requirelogin' ,
desc = > 'If this option is set, all access to the system beyond the ' .
' front page will require a login. No anonymous users will ' .
' be permitted.' ,
type = > 'b' ,
default = > '0'
} ,
2004-08-11 05:08:13 +00:00
{
name = > 'usemenuforusers' ,
desc = > 'If this option is set, a popup menu will be used where a user' .
' needs to be selected. This option should not be enabled on' .
' sites where there are a large number of users.' ,
type = > 'b' ,
default = > '0'
} ,
2002-10-25 03:59:35 +00:00
{
name = > 'usermatchmode' ,
desc = > 'Allow match strings to be entered for user names when entering ' .
'and editing bugs. <p>' .
'"off" disables matching,<br> ' .
'"wildcard" allows only wildcards,<br> ' .
'and "search" allows both wildcards and substring (freetext) ' .
'matches.' ,
type = > 's' ,
choices = > [ 'off' , 'wildcard' , 'search' ] ,
default = > 'off'
} ,
{
name = > 'maxusermatches' ,
desc = > 'Search for no more than this many matches. <br>' .
'If set to "1", no users will be displayed on ambiguous matches. ' .
'This is useful for user privacy purposes. <br>' .
'A value of zero means no limit.' ,
type = > 't' ,
default = > '1000' ,
checker = > \ & check_numeric
} ,
{
name = > 'confirmuniqueusermatch' ,
desc = > 'Whether a confirmation screen should be displayed when only ' .
'one user matches a search entry' ,
type = > 'b' ,
default = > 1 ,
} ,
2003-07-30 20:05:04 +00:00
# Added for Patch Viewer stuff (attachment.cgi?action=diff)
{
name = > 'cvsroot' ,
desc = > 'The <a href="http://www.cvshome.org">CVS</a> root that most ' .
'users of your system will be using for "cvs diff". Used in ' .
'Patch Viewer ("Diff" option on patches) to figure out where ' .
'patches are rooted even if users did the "cvs diff" from ' .
'different places in the directory structure. (NOTE: if your ' .
'CVS repository is remote and requires a password, you must ' .
'either ensure the Bugzilla user has done a "cvs login" or ' .
'specify the password ' .
'<a href="http://www.cvshome.org/docs/manual/cvs_2.html#SEC26">as ' .
'part of the CVS root.</a>) Leave this blank if you have no ' .
'CVS repository.' ,
type = > 't' ,
default = > '' ,
} ,
{
name = > 'cvsroot_get' ,
desc = > 'The CVS root Bugzilla will be using to get patches from. ' .
'Some installations may want to mirror their CVS repository on ' .
'the Bugzilla server or even have it on that same server, and ' .
'thus the repository can be the local file system (and much ' .
'faster). Make this the same as cvsroot if you don\'t ' .
'understand what this is (if cvsroot is blank, make this blank ' .
'too).' ,
type = > 't' ,
default = > '' ,
} ,
{
name = > 'bonsai_url' ,
desc = > 'The URL to a ' .
'<a href="http://www.mozilla.org/bonsai.html">Bonsai</a> ' .
'server containing information about your CVS repository. ' .
'Patch Viewer will use this information to create links to ' .
'bonsai\'s blame for each section of a patch (it will append ' .
'"/cvsblame.cgi?..." to this url). Leave this blank if you ' .
'don\'t understand what this is.' ,
type = > 't' ,
default = > ''
} ,
{
name = > 'lxr_url' ,
desc = > 'The URL to an ' .
'<a href="http://sourceforge.net/projects/lxr">LXR</a> server ' .
'that indexes your CVS repository. Patch Viewer will use this ' .
'information to create links to LXR for each file in a patch. ' .
'Leave this blank if you don\'t understand what this is.' ,
type = > 't' ,
default = > ''
} ,
{
name = > 'lxr_root' ,
desc = > 'Some LXR installations do not index the CVS repository from ' .
'the root--' .
'<a href="http://lxr.mozilla.org/mozilla">Mozilla\'s</a>, for ' .
'example, starts indexing under <code>mozilla/</code>. This ' .
'means URLs are relative to that extra path under the root. ' .
'Enter this if you have a similar situation. Leave it blank ' .
'if you don\'t know what this is.' ,
type = > 't' ,
default = > '' ,
} ,
2002-04-01 22:52:40 +00:00
2004-03-18 05:55:41 +00:00
{
name = > 'noresolveonopenblockers' ,
desc = > 'Don\'t allow bugs to be resolved as fixed if they have unresolved dependencies.' ,
type = > 'b' ,
default = > 0 ,
} ,
) ;
2000-07-13 23:12:52 +00:00
1 ;
2002-08-19 21:17:28 +00:00