X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2Fconfig.debian;h=193e7b528d65e3c4d9ca1a59bb8344c6b6b19946;hb=64d0fa452631c6e228fad18f8ae469582e3734b3;hp=59266a9d23c8d326a547f420f6981bb5c62a2c0f;hpb=09dce6b77720b673f9334ec68177b7284149c418;p=debbugs.git diff --git a/scripts/config.debian b/scripts/config.debian index 59266a9..193e7b5 100644 --- a/scripts/config.debian +++ b/scripts/config.debian @@ -1,38 +1,43 @@ # This is the bugs.debian.org debbugs configuration file. -# $Id: config.debian,v 1.11 2001/04/24 19:10:26 doogie Exp $ +# $Id: config.debian,v 1.27 2005/07/17 19:07:01 cjwatson Exp $ # Domains $gEmailDomain = "bugs.debian.org"; $gListDomain = "lists.debian.org"; +$gWebHostBugDir = ""; $gWebDomain = "www.debian.org/Bugs"; -$gCGIDomain = "http://bugs.debian.org/cgi-bin/"; +$gHTMLSuffix = ""; +$gPackagePages = "packages.debian.org"; +$gCGIDomain = "bugs.debian.org/cgi-bin"; $gMirrors = ""; # comma separated list +$gSubscriptionDomain = "packages.qa.debian.org"; # Project identification $gProject = "Debian"; $gProjectTitle = "Debian GNU/Linux"; # Person(s) responsible for this installation -$gMaintainer = "Darren Benham"; -$gMaintainerWebpage = "http://master.debian.org/~gecko"; +$gMaintainer = "Debian bug tracking system administrator"; # should be plural but that would require changes to other scripts $gMaintainerEmail = "owner\@bugs.debian.org"; # BTS mailing lists, at $gListDomain $gSubmitList = "debian-bugs-dist"; $gMaintList = "debian-bugs-dist"; $gQuietList = "debian-bugs-dist"; -$gFowardList = "debian-bugs-forwarded"; +$gForwardList = "debian-bugs-forwarded"; $gDoneList = "debian-bugs-closed"; $gRequestList = "debian-bugs-dist"; $gSubmitterList = "debian-bugs-dist"; $gControlList = "debian-bugs-dist"; $gSummaryList = "debian-bugs-reports"; $gMirrorList = "debian-bugs-mirror"; # sends to all mirrors +$gStrongList = "debian-bugs-rc"; # Various configurable options $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, serious, important, normal, minor, wishlist, fixed"; @@ -40,6 +45,7 @@ $gShowSeverities = "critical, grave, serious, important, normal, minor, wishlist @gSeverityList = ( "critical", "grave", "serious", "important", "normal", "minor", "wishlist", "fixed" ); +%gObsoleteSeverities = ( fixed => 'Use the fixed tag instead.' ); %gSeverityDisplay = ( "critical", "Critical bugs", "grave", "Grave functionality bugs", "serious", "Serious policy violations", @@ -50,7 +56,10 @@ $gShowSeverities = "critical, grave, serious, important, normal, minor, wishlist "wishlist", "Wishlist items" ); @gTags = ( "patch", "wontfix", "moreinfo", "unreproducible", "fixed", - "potato", "woody", "sid", "help", "security" + "potato", "woody", "sid", "help", "security", "upstream", + "pending", "sarge", "sarge-ignore", "experimental", "d-i", + "confirmed", "ipv6", "lfs", "fixed-in-experimental", + "fixed-upstream", "l10n", "etch", "etch-ignore" ); # better don't change this @@ -58,15 +67,19 @@ $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate # Directories -- do _not_ change their locations. # They are currently hardcoded, variables are here for future expansion. -$gConfigDir = "/etc/debbugs"; # directory where this file is -$gSpoolDir = "/var/lib/debbugs/spool"; # working directory +$gConfigDir = "/org/bugs.debian.org/etc"; # directory where this file is +$gSpoolDir = "/org/bugs.debian.org/spool"; # working directory +$gIndicesDir = "/org/bugs.debian.org/indices"; # directory where the indices are $gIncomingDir = "incoming"; # unprocessed e-mails -$gWebDir = "/var/lib/debbugs/www"; # base location of web pages -$gDocDir = "/debian/debian/doc"; # 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 +$gWebDir = "/org/bugs.debian.org/www"; # base location of web pages +$gDocDir = "/org/ftp.debian.org/ftp/doc"; # location of text doc files # Required data files $gMaintainerFile = "$gConfigDir/Maintainers"; $gMaintainerFileOverride = "$gConfigDir/Maintainers.override"; +$gUnknownMaintainerEmail = "unknown-package\@qa.debian.org"; + $gPseudoDescFile = "$gConfigDir/pseudo-packages.description"; +$gPackageSource = "$gConfigDir/indices/sources"; + +1;