]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.debian
[project @ 2002-10-03 12:49:43 by cjwatson]
[debbugs.git] / scripts / config.debian
1 # This is the bugs.debian.org debbugs configuration file.
2 # $Id: config.debian,v 1.14 2002/10/03 12:49:43 cjwatson Exp $
3
4 # Domains
5 $gEmailDomain = "bugs.debian.org";
6 $gListDomain = "lists.debian.org";
7 $gWebDomain = "www.debian.org/Bugs";
8 $gPackagePages = "packages.debian.org";
9 $gCGIHost = "bugs.debian.org";
10 $gCGIPath = "/cgi-bin/";
11 $gCGIDomain = "http://$gCGIHost$gCGIPath";
12 $gMirrors = "";                                         # comma separated list
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 %gSeverityDisplay = ( "critical", "Critical bugs",
46                       "grave", "Grave functionality bugs",
47                       "serious", "Serious policy violations",
48                       "important", "Important bugs",
49                       "normal", "Normal bugs",
50                       "minor", "Minor bugs",
51                       "fixed", "NMU Fixed bugs",
52                       "wishlist", "Wishlist items"
53                     );
54 @gTags = ( "patch", "wontfix", "moreinfo", "unreproducible", "fixed",
55            "potato", "woody", "sid", "help", "security", "upstream",
56            "pending", "sarge", "experimental"
57          );
58
59 # better don't change this
60 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
61
62 # Directories -- do _not_ change their locations.
63 # They are currently hardcoded, variables are here for future expansion.
64 $gConfigDir = "/org/bugs.debian.org/etc";               # directory where this file is
65 $gSpoolDir = "/org/bugs.debian.org/spool";              # working directory
66 $gIndicesDir = "/org/bugs.debian.org/indices";          # directory where the indices are
67 $gIncomingDir = "incoming";                             # unprocessed e-mails
68 $gWebDir = "/org/bugs.debian.org/www";                  # base location of web pages
69 $gDocDir = "/org/ftp.debian.org/ftp/doc";               # location of text doc files
70
71 # Required data files
72 $gMaintainerFile = "$gConfigDir/Maintainers";
73 $gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
74 $gUnknownMaintainerEmail = "unknown-package\@qa.debian.org";
75
76 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
77 $gPackageSource = "$gConfigDir/indices/sources";