This file is indexed.

/usr/share/doc/debbugs/examples/config is in debbugs 2.6.0.

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
# -*- mode: cperl -*-
# This is the template debbugs configuration file.
# You *must* edit it in order for debbugs to work.
# $Id: config.in,v 1.23 2005/07/17 19:07:01 cjwatson Exp $

$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

# 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/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
$gBugSubscriptionDomain = "";                           # e.g. lists.debian.org (requires one list per bug
                                                        #      of the name bugs=<bugno>@<gBugSubscriptionDomain>
# 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
$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
$gStrongList = "bug-strong-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

$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' );


# Required data files
$gMaintainerFile = "$gConfigDir/Maintainers";
$gMaintainerFileOverride = "$gConfigDir/Maintainers.override";
$gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
$gPackageSource = "$gConfigDir/indices/sources";


1;