]> git.donarmstrong.com Git - debbugs.git/blobdiff - scripts/config.in
* Only indicate that a bug has been reopened on found when it actually has.
[debbugs.git] / scripts / config.in
index 2984cdf51a2b792eb73f94cc83ee761509a29eb6..4767f6a577b5a23b2b9f7890af4394aa273f7f26 100644 (file)
@@ -1,13 +1,20 @@
+# -*- mode: cperl -*-
 # This is the template debbugs configuration file.
 # You *must* edit it in order for debbugs to work.
-# $Id: config.in,v 1.8 2000/10/07 19:00:44 joy Exp $
+# $Id: config.in,v 1.23 2005/07/17 19:07:01 cjwatson Exp $
 
 # Domains
 $gEmailDomain = "bugs.something";                      # e.g. bugs.debian.org
 $gListDomain = "lists.something";                      # e.g. lists.debian.org
-$gWebDomain = "localhost/Bugs";                                # e.g. www.debian.org/Bugs
-$gCGIDomain = "/Bugs/cgi";                             # e.g. cgi.debian.org
+$gWebHost = "localhost";                               # e.g. www.debian.org
+$gWebHostBugDir = "Bugs";                              # e.g. Bugs
+# For now, don't change this one manually!
+$gWebDomain = "$gWebHost/$gWebHostBugDir";
+$gHTMLSuffix = ".html";
+$gCGIDomain = "$gWebDomain/cgi";                       # e.g. cgi.debian.org
 $gMirrors = "";                                                # comma separated list
+$gPackagePages = "packages.debian.org";                 # e.g. packages.debian.org
+$gSubscriptionDomain = "packages.something";           # e.g. packages.qa.debian.org
 
 # Project identification
 $gProject = "Something";                               # e.g. Debian
@@ -16,6 +23,7 @@ $gProjectTitle = "Something DebBugs Test";            # e.g. Debian GNU/Linux
 $gMaintainer = "Local DebBugs Owner";                  # e.g. Ian Jackson
 $gMaintainerWebpage = "http://localhost/~owner";       # e.g. http://www.debian.org/~iwj
 $gMaintainerEmail = "root\@something";                 # e.g. owner@bugs.debian.org
+$gUnknownMaintainerEmail = "$gMaintainerEmail";                # e.g. unknown-package@qa.debian.org
 
 # BTS mailing lists, at $gListDomain
 # if you don't want lists, set them all to $gMaintainerEmail
@@ -23,7 +31,7 @@ $gMaintainerEmail = "root\@something";                        # e.g. owner@bugs.debian.org
 $gSubmitList = "bug-submit-list";              # e.g. debian-bugs-dist
 $gMaintList = "bug-maint-list";                        # e.g. debian-bugs-dist
 $gQuietList = "bug-quiet-list";                        # e.g. debian-bugs-dist
-$gFowardList = "bug-forward-list";             # e.g. debian-bugs-forwarded
+$gForwardList = "bug-forward-list";            # e.g. debian-bugs-forwarded
 $gDoneList = "bug-done-list";                  # e.g. debian-bugs-closed
 $gRequestList = "bug-request-list";            # e.g. debian-bugs-dist
 $gSubmitterList = "bug-submitter-list";                # e.g. debian-bugs-dist
@@ -35,7 +43,8 @@ $gMirrorList = "bug-mirrors-list";            # sends to all mirrors
 $gMailer = "exim";                             # valid: exim, qmail and sendmail
 $gBug = "bug";                                 # how to spell `bug'
 $gBugs = "bugs";                               # how to spell `bugs'
-$gRemoveAge = 28;                              # days after closed bugs are cleaned out
+$gRemoveAge = 28;                              # days after closed bugs are cleaned out,
+                                               # 0 disables
 $gSaveOldBugs = 1;                             # whether to archive such bugs
 $gDefaultSeverity = "normal";
 $gShowSeverities = "critical, grave, normal, minor, wishlist";
@@ -44,8 +53,8 @@ $gShowSeverities = "critical, grave, normal, minor, wishlist";
 %gSeverityDisplay = ( 'critical', "Critical $gBugs",
                       'grave', "Grave $gBugs",
                       'normal', "Normal $gBugs",
-                      'fixed', "Fixed $gBugs",
                       'wishlist', "Wishlist items" );
+@gTags = ( 'patch', 'wontfix', 'moreinfo', 'unreproducible', 'fixed', 'stable' );
 
 # better don't change this
 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
@@ -57,18 +66,18 @@ $gSpoolDir = "/var/lib/debbugs/spool";                      # working directory
 $gIncomingDir = "incoming";                            # unprocessed e-mails
 $gWebDir = "/var/lib/debbugs/www";                     # base location of web pages
 $gDocDir = "/var/lib/debbugs/www/txt";                 # location of text doc files
-$gAJDbDir = "/var/lib/debbugs/spool/db";               # AJ's database dir
-$gAJIndex = "/debian/home/ajt/ajbug/pkgindex";         # AJ's package index
 
 # Required data files
 $gMaintainerFile = "$gConfigDir/Maintainers";
+$gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
+$gPackageSource = "$gConfigDir/indices/sources";
 
-# Part of instructions printed by the receive script when bouncing a bad e-mail
-$gTextInstructions = "$gBadEmailPrefix
-$gBadEmailPrefix Instructions are available from ftp.debian.org in /debian
-$gBadEmailPrefix and at all Debian mirror sites, in the files:
-$gBadEmailPrefix  doc/bug-reporting.txt
-$gBadEmailPrefix  doc/bug-log-access.txt
-$gBadEmailPrefix  doc/bug-maint-info.txt
-$gBadEmailPrefix";
+
+# Estraier Configuration
+%gSearchEstraier = (url  => 'http://localhost:1978/node/bts1',
+                   user => 'user',
+                   pass => 'pass',
+                  );
+
+1;