# This is the template debbugs configuration file. # You *must* edit it in order for debbugs to work. # $Id: config.in,v 1.11 2000/10/10 23:42:14 joy 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 = "$gWebDomain/Bugs/cgi"; # e.g. cgi.debian.org $gMirrors = ""; # comma separated list # Project identification $gProject = "Something"; # e.g. Debian $gProjectTitle = "Something DebBugs Test"; # e.g. Debian GNU/Linux # Person(s) responsible for this installation $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 # BTS mailing lists, at $gListDomain # if you don't want lists, set them all to $gMaintainerEmail # if you don't want that mail at all, filter it out somehow :) $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 $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 $gControlList = "bug-control-list"; # e.g. debian-bugs-dist $gSummaryList = "bug-summary-list"; # e.g. debian-bugs-reports $gMirrorList = "bug-mirrors-list"; # sends to all mirrors # 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 $gSaveOldBugs = 1; # whether to archive such bugs $gDefaultSeverity = "normal"; $gShowSeverities = "critical, grave, normal, minor, wishlist"; @gStrongSeverities = ( 'critical', 'grave' ); @gSeverityList = ( 'critical', 'grave', 'normal', '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"; # 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 $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"; $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";