]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.debian
[project @ 2003-02-16 15:20:26 by cjwatson]
[debbugs.git] / scripts / config.debian
1 # This is the bugs.debian.org debbugs configuration file.
2 # $Id: config.debian,v 1.17 2003/02/16 15:20:26 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"
60          );
61
62 # better don't change this
63 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
64
65 # Directories -- do _not_ change their locations.
66 # They are currently hardcoded, variables are here for future expansion.
67 $gConfigDir = "/org/bugs.debian.org/etc";               # directory where this file is
68 $gSpoolDir = "/org/bugs.debian.org/spool";              # working directory
69 $gIndicesDir = "/org/bugs.debian.org/indices";          # directory where the indices are
70 $gIncomingDir = "incoming";                             # unprocessed e-mails
71 $gWebDir = "/org/bugs.debian.org/www";                  # base location of web pages
72 $gDocDir = "/org/ftp.debian.org/ftp/doc";               # location of text doc files
73
74 # Required data files
75 $gMaintainerFile = "$gConfigDir/Maintainers";
76 $gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
77 $gUnknownMaintainerEmail = "unknown-package\@qa.debian.org";
78
79 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
80 $gPackageSource = "$gConfigDir/indices/sources";