This file is indexed.

/usr/share/doc/debbugs/examples/config is in debbugs 2.4.1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# This is the template debbugs configuration file.
# You *must* edit it in order for debbugs to work.
# $Id: config.in,v 1.18 2003/06/04 18:05:51 cjwatson Exp $

# Domains
$gEmailDomain = "bugs.something";			# e.g. bugs.debian.org
$gListDomain = "lists.something";			# e.g. lists.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/Bugs/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
$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
$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
# 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",
                      '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";
$gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
$gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
$gPackageSource = "$gConfigDir/indices/sources";