]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.debian
[project @ 2001-11-17 00:40:03 by doogie]
[debbugs.git] / scripts / config.debian
1 # This is the bugs.debian.org debbugs configuration file.
2 # $Id: config.debian,v 1.13 2001/11/17 00:40:03 doogie 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 $gCGIDomain = "http://bugs.debian.org/cgi-bin/";
10 $gMirrors = "";                                         # comma separated list
11
12 # Project identification
13 $gProject = "Debian";
14 $gProjectTitle = "Debian GNU/Linux";
15 # Person(s) responsible for this installation
16 $gMaintainer = "Darren Benham";
17 $gMaintainerWebpage = "http://master.debian.org/~gecko";
18 $gMaintainerEmail = "owner\@bugs.debian.org";
19
20 # BTS mailing lists, at $gListDomain
21 $gSubmitList = "debian-bugs-dist";
22 $gMaintList = "debian-bugs-dist";
23 $gQuietList = "debian-bugs-dist";
24 $gFowardList = "debian-bugs-forwarded";
25 $gDoneList = "debian-bugs-closed";
26 $gRequestList = "debian-bugs-dist";
27 $gSubmitterList = "debian-bugs-dist";
28 $gControlList = "debian-bugs-dist";
29 $gSummaryList = "debian-bugs-reports";
30 $gMirrorList = "debian-bugs-mirror";                    # sends to all mirrors
31
32 # Various configurable options
33 $gMailer = "exim";                              # valid: exim, qmail and sendmail
34 $gBug = "Bug";                                  # how to spell `bug'
35 $gBugs = "Bugs";                                # how to spell `bugs'
36 $gRemoveAge = 28;                               # days after closed bugs are cleaned out
37 $gSaveOldBugs = 1;                              # whether to archive such bugs
38 $gDefaultSeverity = "normal";
39 $gShowSeverities = "critical, grave, serious, important, normal, minor, wishlist, fixed";
40 @gStrongSeverities = ( "critical", "grave", "serious" );
41 @gSeverityList = ( "critical", "grave", "serious", "important", "normal",
42                    "minor", "wishlist", "fixed"
43                  );
44 %gSeverityDisplay = ( "critical", "Critical bugs",
45                       "grave", "Grave functionality bugs",
46                       "serious", "Serious policy violations",
47                       "important", "Important bugs",
48                       "normal", "Normal bugs",
49                       "minor", "Minor bugs",
50                       "fixed", "NMU Fixed bugs",
51                       "wishlist", "Wishlist items"
52                     );
53 @gTags = ( "patch", "wontfix", "moreinfo", "unreproducible", "fixed",
54            "potato", "woody", "sid", "help", "security", "upstream",
55            "pending"
56          );
57
58 # better don't change this
59 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
60
61 # Directories -- do _not_ change their locations.
62 # They are currently hardcoded, variables are here for future expansion.
63 $gConfigDir = "/org/bugs.debian.org/etc";               # directory where this file is
64 $gSpoolDir = "/org/bugs.debian.org/spool";              # working directory
65 $gIndicesDir = "/org/bugs.debian.org/indices";          # directory where the indices are
66 $gIncomingDir = "incoming";                             # unprocessed e-mails
67 $gWebDir = "/org/bugs.debian.org/www";                  # base location of web pages
68 $gDocDir = "/org/ftp.debian.org/ftp/doc";               # location of text doc files
69
70 # Required data files
71 $gMaintainerFile = "$gConfigDir/Maintainers";
72 $gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
73 $gUnknownMaintainerEmail = "unknown-package\@qa.debian.org";
74
75 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
76 $gPackageSource = "$gConfigDir/indices/sources";