]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.debian
[project @ 2002-11-17 22:45:15 by cjwatson]
[debbugs.git] / scripts / config.debian
1 # This is the bugs.debian.org debbugs configuration file.
2 # $Id: config.debian,v 1.15 2002/11/17 22:45:16 cjwatson Exp $
3
4 # Domains
5 $gEmailDomain = "bugs.debian.org";
6 $gListDomain = "lists.debian.org";
7 $gWebDomain = "www.debian.org/Bugs";
8 $gPackagePages = "packages.debian.org";
9 $gCGIHost = "bugs.debian.org";
10 $gCGIPath = "/cgi-bin/";
11 $gCGIDomain = "http://$gCGIHost$gCGIPath";
12 $gMirrors = "";                                         # comma separated list
13 $gSubscriptionDomain = "packages.qa.debian.org";
14
15 # Project identification
16 $gProject = "Debian";
17 $gProjectTitle = "Debian GNU/Linux";
18 # Person(s) responsible for this installation
19 $gMaintainer = "Debian bug tracking system administrator"; # should be plural but that would require changes to other scripts
20 $gMaintainerEmail = "owner\@bugs.debian.org";
21
22 # BTS mailing lists, at $gListDomain
23 $gSubmitList = "debian-bugs-dist";
24 $gMaintList = "debian-bugs-dist";
25 $gQuietList = "debian-bugs-dist";
26 $gFowardList = "debian-bugs-forwarded";
27 $gDoneList = "debian-bugs-closed";
28 $gRequestList = "debian-bugs-dist";
29 $gSubmitterList = "debian-bugs-dist";
30 $gControlList = "debian-bugs-dist";
31 $gSummaryList = "debian-bugs-reports";
32 $gMirrorList = "debian-bugs-mirror";                    # sends to all mirrors
33
34 # Various configurable options
35 $gMailer = "exim";                              # valid: exim, qmail and sendmail
36 $gBug = "Bug";                                  # how to spell `bug'
37 $gBugs = "Bugs";                                # how to spell `bugs'
38 $gRemoveAge = 28;                               # days after closed bugs are cleaned out
39 $gSaveOldBugs = 1;                              # whether to archive such bugs
40 $gDefaultSeverity = "normal";
41 $gShowSeverities = "critical, grave, serious, important, normal, minor, wishlist, fixed";
42 @gStrongSeverities = ( "critical", "grave", "serious" );
43 @gSeverityList = ( "critical", "grave", "serious", "important", "normal",
44                    "minor", "wishlist", "fixed"
45                  );
46 %gSeverityDisplay = ( "critical", "Critical bugs",
47                       "grave", "Grave functionality bugs",
48                       "serious", "Serious policy violations",
49                       "important", "Important bugs",
50                       "normal", "Normal bugs",
51                       "minor", "Minor bugs",
52                       "fixed", "NMU Fixed bugs",
53                       "wishlist", "Wishlist items"
54                     );
55 @gTags = ( "patch", "wontfix", "moreinfo", "unreproducible", "fixed",
56            "potato", "woody", "sid", "help", "security", "upstream",
57            "pending", "sarge", "experimental"
58          );
59
60 # better don't change this
61 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
62
63 # Directories -- do _not_ change their locations.
64 # They are currently hardcoded, variables are here for future expansion.
65 $gConfigDir = "/org/bugs.debian.org/etc";               # directory where this file is
66 $gSpoolDir = "/org/bugs.debian.org/spool";              # working directory
67 $gIndicesDir = "/org/bugs.debian.org/indices";          # directory where the indices are
68 $gIncomingDir = "incoming";                             # unprocessed e-mails
69 $gWebDir = "/org/bugs.debian.org/www";                  # base location of web pages
70 $gDocDir = "/org/ftp.debian.org/ftp/doc";               # location of text doc files
71
72 # Required data files
73 $gMaintainerFile = "$gConfigDir/Maintainers";
74 $gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
75 $gUnknownMaintainerEmail = "unknown-package\@qa.debian.org";
76
77 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
78 $gPackageSource = "$gConfigDir/indices/sources";