This file is indexed.

/usr/share/doc/debbugs/examples/config.debian 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# This is the bugs.debian.org debbugs configuration file.
# $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";
$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 = "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";
$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,
						# 0 disables
$gSaveOldBugs = 1;				# whether to archive such bugs
$gDefaultSeverity = "normal";
$gShowSeverities = "critical, grave, serious, important, normal, minor, wishlist, fixed";
@gStrongSeverities = ( "critical", "grave", "serious" );
@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",
                      "important", "Important bugs",
                      "normal", "Normal bugs",
                      "minor", "Minor bugs",
                      "fixed", "NMU Fixed bugs",
                      "wishlist", "Wishlist items"
                    );
@gTags = ( "patch", "wontfix", "moreinfo", "unreproducible", "fixed",
           "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
$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 = "/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 = "/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;