2006-07-29 13:32:58 +04:00
|
|
|
# redMine - project management software
|
|
|
|
# Copyright (C) 2006 Jean-Philippe Lang
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
|
|
|
|
# To set your own configuration, rename this file to config_custom.rb
|
|
|
|
# and edit parameters below
|
|
|
|
# Don't forget to restart the application after any change.
|
|
|
|
|
|
|
|
|
|
|
|
# Application host name
|
|
|
|
# Used to provide absolute links in mail notifications
|
|
|
|
# $RDM_HOST_NAME = "somenet.foo"
|
|
|
|
|
|
|
|
# File storage path
|
|
|
|
# Directory used to store uploaded files
|
|
|
|
# #{RAILS_ROOT} represents application's home directory
|
|
|
|
# $RDM_STORAGE_PATH = "#{RAILS_ROOT}/files"
|
|
|
|
|
|
|
|
# Set $RDM_LOGIN_REQUIRED to true if you want to force users to login
|
|
|
|
# to access any page of the application
|
|
|
|
# $RDM_LOGIN_REQUIRED = false
|
|
|
|
|
|
|
|
# Uncomment to disable user self-registration
|
|
|
|
# $RDM_SELF_REGISTRATION = false
|
|
|
|
|
2006-11-12 21:50:30 +03:00
|
|
|
# Default langage ('en', 'es', 'de', 'fr' are available)
|
2006-07-29 13:32:58 +04:00
|
|
|
# $RDM_DEFAULT_LANG = 'en'
|
|
|
|
|
2006-11-05 19:49:27 +03:00
|
|
|
# Email adress used to send mail notifications
|
|
|
|
# $RDM_MAIL_FROM = "redmine@somenet.foo"
|
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
# Page title
|
|
|
|
# $RDM_HEADER_TITLE = "Title"
|
|
|
|
|
|
|
|
# Page sub-title
|
|
|
|
# $RDM_HEADER_SUBTITLE = "Sub title"
|
|
|
|
|
|
|
|
# Welcome page title
|
|
|
|
# $RDM_WELCOME_TITLE = "Welcome"
|
|
|
|
|
|
|
|
# Welcome page text
|
|
|
|
# $RDM_WELCOME_TEXT = ""
|
|
|
|
|
|
|
|
# Signature displayed in footer
|
|
|
|
# Email adresses will be automatically displayed as a mailto link
|
|
|
|
# $RDM_FOOTER_SIG = "admin@somenet.foo"
|
2006-11-12 21:50:30 +03:00
|
|
|
|
|
|
|
# Textile formatting (only available if RedCloth is installed)
|
|
|
|
# Textile formatting is automativaly disabled if RedCloth is not available
|
|
|
|
# Set to true to manually disable.
|
|
|
|
# $RDM_TEXTILE_DISABLED = true
|
2007-01-01 15:09:09 +03:00
|
|
|
|
|
|
|
# Maximum size for attachments (in bytes)
|
|
|
|
# Default to 5 MB
|
|
|
|
# $RDM_ATTACHMENT_MAX_SIZE = 5*1024*1024
|