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