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