]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.debian
[project @ 2000-10-10 23:42:14 by joy]
[debbugs.git] / scripts / config.debian
1 # This is the bugs.debian.org debbugs configuration file.
2 # $Id: config.debian,v 1.8 2000/10/10 23:42:14 joy Exp $
3
4 # Domains
5 $gEmailDomain = "bugs.debian.org";
6 $gListDomain = "lists.debian.org";
7 $gWebDomain = "bugs.debian.org";
8 $gCGIDomain = "http://bugs.debian.org/cgi-bin/";
9 $gMirrors = "";                                         # comma separated list
10
11 # Project identification
12 $gProject = "Debian";
13 $gProjectTitle = "Debian GNU/Linux";
14 # Person(s) responsible for this installation
15 $gMaintainer = "Darren Benham";
16 $gMaintainerWebpage = "http://master.debian.org/~gecko";
17 $gMaintainerEmail = "owner\@bugs.debian.org";
18
19 # BTS mailing lists, at $gListDomain
20 $gSubmitList = "debian-bugs-dist";
21 $gMaintList = "debian-bugs-dist";
22 $gQuietList = "debian-bugs-dist";
23 $gFowardList = "debian-bugs-forwarded";
24 $gDoneList = "debian-bugs-closed";
25 $gRequestList = "debian-bugs-dist";
26 $gSubmitterList = "debian-bugs-dist";
27 $gControlList = "debian-bugs-dist";
28 $gSummaryList = "debian-bugs-reports";
29 $gMirrorList = "debian-bugs-mirror";                    # sends to all mirrors
30
31 # Various configurable options
32 $gMailer = "exim";                              # valid: exim, qmail and sendmail
33 $gBug = "Bug";                                  # how to spell `bug'
34 $gBugs = "Bugs";                                # how to spell `bugs'
35 $gRemoveAge = 28;                               # days after closed bugs are cleaned out
36 $gSaveOldBugs = 1;                              # whether to archive such bugs
37 $gDefaultSeverity = "normal";
38 $gShowSeverities = "critical, grave, important, normal, minor, wishlist, fixed";
39 @gStrongSeverities = ( 'critical', 'grave', 'important' );
40 @gSeverityList = ( 'critical', 'grave', 'important', 'normal', 'minor', 'wishlist', 'fixed');
41 %gSeverityDisplay = ( 'critical', "Critical $gBugs",
42                       'grave', "Grave $gBugs",
43                       'important', "Important $gBugs",
44                       'normal', "Normal $gBugs",
45                       'minor', "Trivial $gBugs",
46                       'fixed', "NMU Fixed $gBugs",
47                       'wishlist', "Wishlist items" );
48 @gTags = ( 'patch', 'wontfix', 'moreinfo', 'unreproducible', 'fixed', 'stable' );
49
50 # better don't change this
51 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
52
53 # Directories -- do _not_ change their locations.
54 # They are currently hardcoded, variables are here for future expansion.
55 $gConfigDir = "/etc/debbugs";                           # directory where this file is
56 $gSpoolDir = "/var/lib/debbugs/spool";                  # working directory
57 $gIncomingDir = "incoming";                             # unprocessed e-mails
58 $gWebDir = "/var/lib/debbugs/www";                      # base location of web pages
59 $gDocDir = "/debian/debian/doc";                        # location of text doc files
60 $gAJDbDir = "/var/lib/debbugs/spool/db";                # AJ's database dir
61 $gAJIndex = "/debian/home/ajt/ajbug/pkgindex";          # AJ's package index
62
63 # Required data files
64 $gMaintainerFile = "$gConfigDir/Maintainers";
65 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";