diff options
Diffstat (limited to 'config/config_custom.example.rb')
-rw-r--r-- | config/config_custom.example.rb | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/config/config_custom.example.rb b/config/config_custom.example.rb deleted file mode 100644 index b00e716b1..000000000 --- a/config/config_custom.example.rb +++ /dev/null @@ -1,69 +0,0 @@ -# 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
-
-# Default langage ('en', 'es', 'de', 'fr' are available)
-# $RDM_DEFAULT_LANG = 'en'
-
-# Email adress used to send mail notifications
-# $RDM_MAIL_FROM = "redmine@somenet.foo"
-
-# 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"
-
-# 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
-
-# Maximum size for attachments (in bytes)
-# Default to 5 MB
-# $RDM_ATTACHMENT_MAX_SIZE = 5*1024*1024
|