]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.debian
[project @ 2005-07-17 18:51:47 by cjwatson]
[debbugs.git] / scripts / config.debian
1 # This is the bugs.debian.org debbugs configuration file.
2 # $Id: config.debian,v 1.26 2005/07/17 18:51:47 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 $gForwardList = "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 $gStrongList = "debian-bugs-rc";
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                                                 # 0 disables
40 $gSaveOldBugs = 1;                              # whether to archive such bugs
41 $gDefaultSeverity = "normal";
42 $gShowSeverities = "critical, grave, serious, important, normal, minor, wishlist, fixed";
43 @gStrongSeverities = ( "critical", "grave", "serious" );
44 @gSeverityList = ( "critical", "grave", "serious", "important", "normal",
45                    "minor", "wishlist", "fixed"
46                  );
47 %gObsoleteSeverities = ( fixed => 'Use the fixed tag instead.' );
48 %gSeverityDisplay = ( "critical", "Critical bugs",
49                       "grave", "Grave functionality bugs",
50                       "serious", "Serious policy violations",
51                       "important", "Important bugs",
52                       "normal", "Normal bugs",
53                       "minor", "Minor bugs",
54                       "fixed", "NMU Fixed bugs",
55                       "wishlist", "Wishlist items"
56                     );
57 @gTags = ( "patch", "wontfix", "moreinfo", "unreproducible", "fixed",
58            "potato", "woody", "sid", "help", "security", "upstream",
59            "pending", "sarge", "sarge-ignore", "experimental", "d-i",
60            "confirmed", "ipv6", "lfs", "fixed-in-experimental",
61            "fixed-upstream", "l10n", "etch", "etch-ignore"
62          );
63
64 # better don't change this
65 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
66
67 # Directories -- do _not_ change their locations.
68 # They are currently hardcoded, variables are here for future expansion.
69 $gConfigDir = "/org/bugs.debian.org/etc";               # directory where this file is
70 $gSpoolDir = "/org/bugs.debian.org/spool";              # working directory
71 $gIndicesDir = "/org/bugs.debian.org/indices";          # directory where the indices are
72 $gIncomingDir = "incoming";                             # unprocessed e-mails
73 $gWebDir = "/org/bugs.debian.org/www";                  # base location of web pages
74 $gDocDir = "/org/ftp.debian.org/ftp/doc";               # location of text doc files
75
76 # Required data files
77 $gMaintainerFile = "$gConfigDir/Maintainers";
78 $gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
79 $gUnknownMaintainerEmail = "unknown-package\@qa.debian.org";
80
81 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
82 $gPackageSource = "$gConfigDir/indices/sources";