]> git.donarmstrong.com Git - debbugs.git/blobdiff - scripts/config.in
merge changes from dla source tree; upgrade to metadir bzr format
[debbugs.git] / scripts / config.in
index 97f8955cc5c08c8cd08c30ee60d5a32c6af6cb9d..4767f6a577b5a23b2b9f7890af4394aa273f7f26 100644 (file)
@@ -1,6 +1,7 @@
+# -*- mode: cperl -*-
 # This is the template debbugs configuration file.
 # You *must* edit it in order for debbugs to work.
-# $Id: config.in,v 1.12 2001/01/27 22:09:01 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
@@ -9,9 +10,11 @@ $gWebHost = "localhost";                              # e.g. www.debian.org
 $gWebHostBugDir = "Bugs";                              # e.g. Bugs
 # For now, don't change this one manually!
 $gWebDomain = "$gWebHost/$gWebHostBugDir";
-$gCGIDomain = "$gWebDomain/Bugs/cgi";                  # e.g. cgi.debian.org
+$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
@@ -20,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
@@ -27,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
@@ -39,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";
@@ -48,7 +53,6 @@ $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' );
 
@@ -62,9 +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";
+
+
+# Estraier Configuration
+%gSearchEstraier = (url  => 'http://localhost:1978/node/bts1',
+                   user => 'user',
+                   pass => 'pass',
+                  );
+
+1;