annotate .svn/pristine/57/57718143646b44780eedc46df03edb8ea5a87f0c.svn-base @ 1327:287f201c2802 redmine-2.2-integration

Add italic
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jun 2013 20:56:22 +0100
parents 038ba2d95de8
children
rev   line source
Chris@1296 1 # = Redmine configuration file
Chris@1296 2 #
Chris@1296 3 # Each environment has it's own configuration options. If you are only
Chris@1296 4 # running in production, only the production block needs to be configured.
Chris@1296 5 # Environment specific configuration options override the default ones.
Chris@1296 6 #
Chris@1296 7 # Note that this file needs to be a valid YAML file.
Chris@1296 8 # DO NOT USE TABS! Use 2 spaces instead of tabs for identation.
Chris@1296 9 #
Chris@1296 10 # == Outgoing email settings (email_delivery setting)
Chris@1296 11 #
Chris@1296 12 # === Common configurations
Chris@1296 13 #
Chris@1296 14 # ==== Sendmail command
Chris@1296 15 #
Chris@1296 16 # production:
Chris@1296 17 # email_delivery:
Chris@1296 18 # delivery_method: :sendmail
Chris@1296 19 #
Chris@1296 20 # ==== Simple SMTP server at localhost
Chris@1296 21 #
Chris@1296 22 # production:
Chris@1296 23 # email_delivery:
Chris@1296 24 # delivery_method: :smtp
Chris@1296 25 # smtp_settings:
Chris@1296 26 # address: "localhost"
Chris@1296 27 # port: 25
Chris@1296 28 #
Chris@1296 29 # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
Chris@1296 30 #
Chris@1296 31 # production:
Chris@1296 32 # email_delivery:
Chris@1296 33 # delivery_method: :smtp
Chris@1296 34 # smtp_settings:
Chris@1296 35 # address: "example.com"
Chris@1296 36 # port: 25
Chris@1296 37 # authentication: :login
Chris@1296 38 # domain: 'foo.com'
Chris@1296 39 # user_name: 'myaccount'
Chris@1296 40 # password: 'password'
Chris@1296 41 #
Chris@1296 42 # ==== SMTP server at example.com using PLAIN authentication
Chris@1296 43 #
Chris@1296 44 # production:
Chris@1296 45 # email_delivery:
Chris@1296 46 # delivery_method: :smtp
Chris@1296 47 # smtp_settings:
Chris@1296 48 # address: "example.com"
Chris@1296 49 # port: 25
Chris@1296 50 # authentication: :plain
Chris@1296 51 # domain: 'example.com'
Chris@1296 52 # user_name: 'myaccount'
Chris@1296 53 # password: 'password'
Chris@1296 54 #
Chris@1296 55 # ==== SMTP server at using TLS (GMail)
Chris@1296 56 #
Chris@1296 57 # This might require some additional configuration. See the guides at:
Chris@1296 58 # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration
Chris@1296 59 #
Chris@1296 60 # production:
Chris@1296 61 # email_delivery:
Chris@1296 62 # delivery_method: :smtp
Chris@1296 63 # smtp_settings:
Chris@1296 64 # enable_starttls_auto: true
Chris@1296 65 # address: "smtp.gmail.com"
Chris@1296 66 # port: 587
Chris@1296 67 # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
Chris@1296 68 # authentication: :plain
Chris@1296 69 # user_name: "your_email@gmail.com"
Chris@1296 70 # password: "your_password"
Chris@1296 71 #
Chris@1296 72 #
Chris@1296 73 # === More configuration options
Chris@1296 74 #
Chris@1296 75 # See the "Configuration options" at the following website for a list of the
Chris@1296 76 # full options allowed:
Chris@1296 77 #
Chris@1296 78 # http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer
Chris@1296 79
Chris@1296 80
Chris@1296 81 # default configuration options for all environments
Chris@1296 82 default:
Chris@1296 83 # Outgoing emails configuration (see examples above)
Chris@1296 84 email_delivery:
Chris@1296 85 delivery_method: :smtp
Chris@1296 86 smtp_settings:
Chris@1296 87 address: smtp.example.net
Chris@1296 88 port: 25
Chris@1296 89 domain: example.net
Chris@1296 90 authentication: :login
Chris@1296 91 user_name: "redmine@example.net"
Chris@1296 92 password: "redmine"
Chris@1296 93
Chris@1296 94 # Absolute path to the directory where attachments are stored.
Chris@1296 95 # The default is the 'files' directory in your Redmine instance.
Chris@1296 96 # Your Redmine instance needs to have write permission on this
Chris@1296 97 # directory.
Chris@1296 98 # Examples:
Chris@1296 99 # attachments_storage_path: /var/redmine/files
Chris@1296 100 # attachments_storage_path: D:/redmine/files
Chris@1296 101 attachments_storage_path:
Chris@1296 102
Chris@1296 103 # Configuration of the autologin cookie.
Chris@1296 104 # autologin_cookie_name: the name of the cookie (default: autologin)
Chris@1296 105 # autologin_cookie_path: the cookie path (default: /)
Chris@1296 106 # autologin_cookie_secure: true sets the cookie secure flag (default: false)
Chris@1296 107 autologin_cookie_name:
Chris@1296 108 autologin_cookie_path:
Chris@1296 109 autologin_cookie_secure:
Chris@1296 110
Chris@1296 111 # Configuration of SCM executable command.
Chris@1296 112 #
Chris@1296 113 # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
Chris@1296 114 # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
Chris@1296 115 #
Chris@1296 116 # On Windows + JRuby 1.6.2, path which contains spaces does not work.
Chris@1296 117 # For example, "C:\Program Files\TortoiseHg\hg.exe".
Chris@1296 118 # If you want to this feature, you need to install to the path which does not contains spaces.
Chris@1296 119 # For example, "C:\TortoiseHg\hg.exe".
Chris@1296 120 #
Chris@1296 121 # Examples:
Chris@1296 122 # scm_subversion_command: svn # (default: svn)
Chris@1296 123 # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg)
Chris@1296 124 # scm_git_command: /usr/local/bin/git # (default: git)
Chris@1296 125 # scm_cvs_command: cvs # (default: cvs)
Chris@1296 126 # scm_bazaar_command: bzr.exe # (default: bzr)
Chris@1296 127 # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs)
Chris@1296 128 #
Chris@1296 129 scm_subversion_command:
Chris@1296 130 scm_mercurial_command:
Chris@1296 131 scm_git_command:
Chris@1296 132 scm_cvs_command:
Chris@1296 133 scm_bazaar_command:
Chris@1296 134 scm_darcs_command:
Chris@1296 135
Chris@1296 136 # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
Chris@1296 137 # If you don't want to enable data encryption, just leave it blank.
Chris@1296 138 # WARNING: losing/changing this key will make encrypted data unreadable.
Chris@1296 139 #
Chris@1296 140 # If you want to encrypt existing passwords in your database:
Chris@1296 141 # * set the cipher key here in your configuration file
Chris@1296 142 # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
Chris@1296 143 #
Chris@1296 144 # If you have encrypted data and want to change this key, you have to:
Chris@1296 145 # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
Chris@1296 146 # * change the cipher key here in your configuration file
Chris@1296 147 # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
Chris@1296 148 database_cipher_key:
Chris@1296 149
Chris@1296 150 # Set this to false to disable plugins' assets mirroring on startup.
Chris@1296 151 # You can use `rake redmine:plugins:assets` to manually mirror assets
Chris@1296 152 # to public/plugin_assets when you install/upgrade a Redmine plugin.
Chris@1296 153 #
Chris@1296 154 #mirror_plugins_assets_on_startup: false
Chris@1296 155
Chris@1296 156 # Your secret key for verifying cookie session data integrity. If you
Chris@1296 157 # change this key, all old sessions will become invalid! Make sure the
Chris@1296 158 # secret is at least 30 characters and all random, no regular words or
Chris@1296 159 # you'll be exposed to dictionary attacks.
Chris@1296 160 #
Chris@1296 161 # If you have a load-balancing Redmine cluster, you have to use the
Chris@1296 162 # same secret token on each machine.
Chris@1296 163 #secret_token: 'change it to a long random string'
Chris@1296 164
Chris@1296 165 # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
Chris@1296 166 # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
Chris@1296 167 #imagemagick_convert_command:
Chris@1296 168
Chris@1296 169 # Configuration of RMagcik font.
Chris@1296 170 #
Chris@1296 171 # Redmine uses RMagcik in order to export gantt png.
Chris@1296 172 # You don't need this setting if you don't install RMagcik.
Chris@1296 173 #
Chris@1296 174 # In CJK (Chinese, Japanese and Korean),
Chris@1296 175 # in order to show CJK characters correctly,
Chris@1296 176 # you need to set this configuration.
Chris@1296 177 #
Chris@1296 178 # Because there is no standard font across platforms in CJK,
Chris@1296 179 # you need to set a font installed in your server.
Chris@1296 180 #
Chris@1296 181 # This setting is not necessary in non CJK.
Chris@1296 182 #
Chris@1296 183 # Examples for Japanese:
Chris@1296 184 # Windows:
Chris@1296 185 # rmagick_font_path: C:\windows\fonts\msgothic.ttc
Chris@1296 186 # Linux:
Chris@1296 187 # rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
Chris@1296 188 #
Chris@1296 189 rmagick_font_path:
Chris@1296 190
Chris@1296 191 # specific configuration options for production environment
Chris@1296 192 # that overrides the default ones
Chris@1296 193 production:
Chris@1296 194
Chris@1296 195 # specific configuration options for development environment
Chris@1296 196 # that overrides the default ones
Chris@1296 197 development: