]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.debian
[project @ 2003-08-06 10:57:23 by cjwatson]
[debbugs.git] / scripts / config.debian
1 # This is the bugs.debian.org debbugs configuration file.
2 # $Id: config.debian,v 1.21 2003/08/06 10:57:23 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                                                 # 0 disables
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 %gObsoleteSeverities = ( fixed => 'Use the fixed tag instead.' );
47 %gSeverityDisplay = ( "critical", "Critical bugs",
48                       "grave", "Grave functionality bugs",
49                       "serious", "Serious policy violations",
50                       "important", "Important bugs",
51                       "normal", "Normal bugs",
52                       "minor", "Minor bugs",
53                       "fixed", "NMU Fixed bugs",
54                       "wishlist", "Wishlist items"
55                     );
56 @gTags = ( "patch", "wontfix", "moreinfo", "unreproducible", "fixed",
57            "potato", "woody", "sid", "help", "security", "upstream",
58            "pending", "sarge", "experimental", "d-i", "confirmed",
59            "ipv6", "lfs"
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";