summaryrefslogtreecommitdiff
blob: 0872534a8527f092e208fb4d17f4e7ed0705334e (plain)
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
# GLSAMaker local configuration
# rename this file to glsamaker.rb

# The development environment uses self-issued HTTP basic authentication
# Since GLSAMaker doesn't track passwords, set a password here for usage e.g.
# in ./script/server testing environments. The password applies to every user
GLSAMAKER_DEVEL_PASSWORD = "changeme"

# If you want to force GLSAMaker to use production-style auth in all
# environments, set this to true
GLSAMAKER_FORCE_PRODUCTION_AUTH = false

# Email address of the administrative contact
GLSAMAKER_ADMIN_EMAIL = "security@gentoo.org"

# Email address to send email from
GLSAMAKER_FROM_EMAIL = "glsamaker@gentoo.org"

# Do not send any emails (for development)
GLSAMAKER_NO_EMAIL = false

# Where does the app live?
GLSAMAKER_HOST = "localhost:3000"

# Location of the Portage tree, that can be a full gentoo tree, or what this gets you:
#
# rsync -av rsync://rsync1.de.gentoo.org/gentoo-portage --include 'metadata' \
#  --include 'metadata/**' --include '*/*/metadata.xml' --exclude '*/*/*' \
#  --exclude scripts --exclude eclass --exclude profiles --exclude 'skel.*' \
#  --exclude 'header.txt' --exclude 'licenses' /target
#
GLSAMAKER_PORTDIR = "/usr/portage/"

# Bugzilla login info
GLSAMAKER_BUGZIE_HOST = 'bugs.gentoo.org'
GLSAMAKER_BUGZIE_USER = nil
GLSAMAKER_BUGZIE_PW = nil

# Location of xmlindent(1)
GLSAMAKER_XMLINDENT = "/usr/bin/xmlindent"

# Enabling exception notices
#Glsamaker::Application.config.middleware.use ExceptionNotifier,
#  :email_prefix => "[GLSAMaker Error] ",
#  :sender_address => %{"GLSAMaker" <#{GLSAMAKER_FROM_EMAIL}>},
#  :exception_recipients => %w{GLSAMAKER_ADMIN_EMAIL}