]> git.donarmstrong.com Git - debbugs.git/blob - scripts/config.in
[project @ 2000-10-08 15:17:10 by joy]
[debbugs.git] / scripts / config.in
1 # This is the template debbugs configuration file.
2 # You *must* edit it in order for debbugs to work.
3 # $Id: config.in,v 1.9 2000/10/08 15:17:10 joy Exp $
4
5 # Domains
6 $gEmailDomain = "bugs.something";                       # e.g. bugs.debian.org
7 $gListDomain = "lists.something";                       # e.g. lists.debian.org
8 $gWebDomain = "localhost/Bugs";                         # e.g. www.debian.org/Bugs
9 $gCGIDomain = "$gWebDomain/Bugs/cgi";                   # e.g. cgi.debian.org
10 $gMirrors = "";                                         # comma separated list
11
12 # Project identification
13 $gProject = "Something";                                # e.g. Debian
14 $gProjectTitle = "Something DebBugs Test";              # e.g. Debian GNU/Linux
15 # Person(s) responsible for this installation
16 $gMaintainer = "Local DebBugs Owner";                   # e.g. Ian Jackson
17 $gMaintainerWebpage = "http://localhost/~owner";        # e.g. http://www.debian.org/~iwj
18 $gMaintainerEmail = "root\@something";                  # e.g. owner@bugs.debian.org
19
20 # BTS mailing lists, at $gListDomain
21 # if you don't want lists, set them all to $gMaintainerEmail
22 # if you don't want that mail at all, filter it out somehow :)
23 $gSubmitList = "bug-submit-list";               # e.g. debian-bugs-dist
24 $gMaintList = "bug-maint-list";                 # e.g. debian-bugs-dist
25 $gQuietList = "bug-quiet-list";                 # e.g. debian-bugs-dist
26 $gFowardList = "bug-forward-list";              # e.g. debian-bugs-forwarded
27 $gDoneList = "bug-done-list";                   # e.g. debian-bugs-closed
28 $gRequestList = "bug-request-list";             # e.g. debian-bugs-dist
29 $gSubmitterList = "bug-submitter-list";         # e.g. debian-bugs-dist
30 $gControlList = "bug-control-list";             # e.g. debian-bugs-dist
31 $gSummaryList = "bug-summary-list";             # e.g. debian-bugs-reports
32 $gMirrorList = "bug-mirrors-list";              # sends to all mirrors
33
34 # Various configurable options
35 $gMailer = "exim";                              # valid: exim, qmail and sendmail
36 $gBug = "bug";                                  # how to spell `bug'
37 $gBugs = "bugs";                                # how to spell `bugs'
38 $gRemoveAge = 28;                               # days after closed bugs are cleaned out
39 $gSaveOldBugs = 1;                              # whether to archive such bugs
40 $gDefaultSeverity = "normal";
41 $gShowSeverities = "critical, grave, normal, minor, wishlist";
42 @gStrongSeverities = ( 'critical', 'grave' );
43 @gSeverityList = ( 'critical', 'grave', 'normal', 'wishlist' );
44 %gSeverityDisplay = ( 'critical', "Critical $gBugs",
45                       'grave', "Grave $gBugs",
46                       'normal', "Normal $gBugs",
47                       'fixed', "Fixed $gBugs",
48                       'wishlist', "Wishlist items" );
49
50 # better don't change this
51 $gBounceFroms = "^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|^mail.*agent|^tcpmail|^bitmail|^mailman";
52
53 # Directories -- do _not_ change their locations.
54 # They are currently hardcoded, variables are here for future expansion.
55 $gConfigDir = "/etc/debbugs";                           # directory where this file is
56 $gSpoolDir = "/var/lib/debbugs/spool";                  # working directory
57 $gIncomingDir = "incoming";                             # unprocessed e-mails
58 $gWebDir = "/var/lib/debbugs/www";                      # base location of web pages
59 $gDocDir = "/var/lib/debbugs/www/txt";                  # location of text doc files
60 $gAJDbDir = "/var/lib/debbugs/spool/db";                # AJ's database dir
61 $gAJIndex = "/debian/home/ajt/ajbug/pkgindex";          # AJ's package index
62
63 # Required data files
64 $gMaintainerFile = "$gConfigDir/Maintainers";
65 $gPseudoDescFile = "$gConfigDir/pseudo-packages.description";
66
67 # Part of instructions printed by the receive script when bouncing a bad e-mail
68 $gTextInstructions = "$gBadEmailPrefix
69 $gBadEmailPrefix Instructions are available from ftp.debian.org in /debian
70 $gBadEmailPrefix and at all Debian mirror sites, in the files:
71 $gBadEmailPrefix  doc/bug-reporting.txt
72 $gBadEmailPrefix  doc/bug-log-access.txt
73 $gBadEmailPrefix  doc/bug-maint-info.txt
74 $gBadEmailPrefix";