]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.debian
[project @ 2001-04-24 19:10:26 by doogie]
[debbugs.git] / scripts / config.debian
1 # This is the bugs.debian.org debbugs configuration file.
2 # $Id: config.debian,v 1.11 2001/04/24 19:10:26 doogie Exp $
3
4 # Domains
5 $gEmailDomain = "bugs.debian.org";
6 $gListDomain = "lists.debian.org";
7 $gWebDomain = "www.debian.org/Bugs";
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, serious, important, normal, minor, wishlist, fixed";
39 @gStrongSeverities = ( "critical", "grave", "serious" );
40 @gSeverityList = ( "critical", "grave", "serious", "important", "normal",
41                    "minor", "wishlist", "fixed"
42                  );
43 %gSeverityDisplay = ( "critical", "Critical bugs",
44                       "grave", "Grave functionality bugs",
45                       "serious", "Serious policy violations",
46                       "important", "Important bugs",
47                       "normal", "Normal bugs",
48                       "minor", "Minor bugs",
49                       "fixed", "NMU Fixed bugs",
50                       "wishlist", "Wishlist items"
51                     );
52 @gTags = ( "patch", "wontfix", "moreinfo", "unreproducible", "fixed",
53            "potato", "woody", "sid", "help", "security"
54          );
55
56 # better don't change this
57 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
58
59 # Directories -- do _not_ change their locations.
60 # They are currently hardcoded, variables are here for future expansion.
61 $gConfigDir = "/etc/debbugs";                           # directory where this file is
62 $gSpoolDir = "/var/lib/debbugs/spool";                  # working directory
63 $gIncomingDir = "incoming";                             # unprocessed e-mails
64 $gWebDir = "/var/lib/debbugs/www";                      # base location of web pages
65 $gDocDir = "/debian/debian/doc";                        # location of text doc files
66 $gAJDbDir = "/var/lib/debbugs/spool/db";                # AJ's database dir
67 $gAJIndex = "/debian/home/ajt/ajbug/pkgindex";          # AJ's package index
68
69 # Required data files
70 $gMaintainerFile = "$gConfigDir/Maintainers";
71 $gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
72 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";