Happy 2009! Updating copyright years.
[bugdar.git] / install / settings.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2004-2009 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 // this stores all the settings for a new installation
23
24 require_once('./includes/version.php');
25
26 $settings = array(
27 'allownewreg' => '1',
28 'verifyemail' => '1',
29 'moderatenewusers' => '0',
30 'webmasteremail' => 'noreply@bluestatic.org',
31 'trackertitle' => 'Avalon Development Tracker',
32 'trackerversion' => BUGDAR_VERSION,
33 'defaultcomment' => '',
34 'sendwelcomemail' => '1',
35 'authmethod' => 'default',
36 'allowhtml' => '0',
37 'allowrawhtml' => '0',
38 'allowsafehtml' => '1',
39 'defaultseverity' => '2',
40 'defaultpriority' => '3',
41 'defaultstatus' => '1',
42 'defaultresolve' => '1',
43 'defaultassign' => '0',
44 'dateformat' => 'F j, Y h:i:s A',
45 'defaultpp' => '20',
46 'maxpp' => '100',
47 'pagelinks' => '2',
48 'trackerurl' => 'http://localhost/bugtrack',
49 'defaultlanguage' => '1',
50 'syndicateditems' => '10',
51 'hidestatuses' => '0',
52 'defaultsortkey' => 'lastpost',
53 'defaultsortas' => 'desc',
54 'defaulttimezone' => '0',
55 'columnoptions' => 'a:13:{s:5:"bugid";s:1:"1";s:7:"summary";s:1:"2";s:8:"reporter";s:1:"2";s:7:"product";s:1:"3";s:9:"component";s:1:"0";s:7:"version";s:1:"3";s:6:"status";s:1:"4";s:10:"resolution";s:1:"4";s:8:"priority";s:1:"5";s:8:"severity";s:1:"5";s:8:"lastpost";s:1:"6";s:5:"votes";s:1:"0";s:10:"assignedto";s:1:"0";}',
56 'redirectheaders' => '0',
57 );
58
59 ?>