Chris@1296: # = Redmine configuration file Chris@1296: # Chris@1296: # Each environment has it's own configuration options. If you are only Chris@1296: # running in production, only the production block needs to be configured. Chris@1296: # Environment specific configuration options override the default ones. Chris@1296: # Chris@1296: # Note that this file needs to be a valid YAML file. Chris@1296: # DO NOT USE TABS! Use 2 spaces instead of tabs for identation. Chris@1296: # Chris@1296: # == Outgoing email settings (email_delivery setting) Chris@1296: # Chris@1296: # === Common configurations Chris@1296: # Chris@1296: # ==== Sendmail command Chris@1296: # Chris@1296: # production: Chris@1296: # email_delivery: Chris@1296: # delivery_method: :sendmail Chris@1296: # Chris@1296: # ==== Simple SMTP server at localhost Chris@1296: # Chris@1296: # production: Chris@1296: # email_delivery: Chris@1296: # delivery_method: :smtp Chris@1296: # smtp_settings: Chris@1296: # address: "localhost" Chris@1296: # port: 25 Chris@1296: # Chris@1296: # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com Chris@1296: # Chris@1296: # production: Chris@1296: # email_delivery: Chris@1296: # delivery_method: :smtp Chris@1296: # smtp_settings: Chris@1296: # address: "example.com" Chris@1296: # port: 25 Chris@1296: # authentication: :login Chris@1296: # domain: 'foo.com' Chris@1296: # user_name: 'myaccount' Chris@1296: # password: 'password' Chris@1296: # Chris@1296: # ==== SMTP server at example.com using PLAIN authentication Chris@1296: # Chris@1296: # production: Chris@1296: # email_delivery: Chris@1296: # delivery_method: :smtp Chris@1296: # smtp_settings: Chris@1296: # address: "example.com" Chris@1296: # port: 25 Chris@1296: # authentication: :plain Chris@1296: # domain: 'example.com' Chris@1296: # user_name: 'myaccount' Chris@1296: # password: 'password' Chris@1296: # Chris@1296: # ==== SMTP server at using TLS (GMail) Chris@1296: # Chris@1296: # This might require some additional configuration. See the guides at: Chris@1296: # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration Chris@1296: # Chris@1296: # production: Chris@1296: # email_delivery: Chris@1296: # delivery_method: :smtp Chris@1296: # smtp_settings: Chris@1296: # enable_starttls_auto: true Chris@1296: # address: "smtp.gmail.com" Chris@1296: # port: 587 Chris@1296: # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps Chris@1296: # authentication: :plain Chris@1296: # user_name: "your_email@gmail.com" Chris@1296: # password: "your_password" Chris@1296: # Chris@1296: # Chris@1296: # === More configuration options Chris@1296: # Chris@1296: # See the "Configuration options" at the following website for a list of the Chris@1296: # full options allowed: Chris@1296: # Chris@1296: # http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer Chris@1296: Chris@1296: Chris@1296: # default configuration options for all environments Chris@1296: default: Chris@1296: # Outgoing emails configuration (see examples above) Chris@1296: email_delivery: Chris@1296: delivery_method: :smtp Chris@1296: smtp_settings: Chris@1296: address: smtp.example.net Chris@1296: port: 25 Chris@1296: domain: example.net Chris@1296: authentication: :login Chris@1296: user_name: "redmine@example.net" Chris@1296: password: "redmine" Chris@1296: Chris@1296: # Absolute path to the directory where attachments are stored. Chris@1296: # The default is the 'files' directory in your Redmine instance. Chris@1296: # Your Redmine instance needs to have write permission on this Chris@1296: # directory. Chris@1296: # Examples: Chris@1296: # attachments_storage_path: /var/redmine/files Chris@1296: # attachments_storage_path: D:/redmine/files Chris@1296: attachments_storage_path: Chris@1296: Chris@1296: # Configuration of the autologin cookie. Chris@1296: # autologin_cookie_name: the name of the cookie (default: autologin) Chris@1296: # autologin_cookie_path: the cookie path (default: /) Chris@1296: # autologin_cookie_secure: true sets the cookie secure flag (default: false) Chris@1296: autologin_cookie_name: Chris@1296: autologin_cookie_path: Chris@1296: autologin_cookie_secure: Chris@1296: Chris@1296: # Configuration of SCM executable command. Chris@1296: # Chris@1296: # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe) Chris@1296: # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work. Chris@1296: # Chris@1296: # On Windows + JRuby 1.6.2, path which contains spaces does not work. Chris@1296: # For example, "C:\Program Files\TortoiseHg\hg.exe". Chris@1296: # If you want to this feature, you need to install to the path which does not contains spaces. Chris@1296: # For example, "C:\TortoiseHg\hg.exe". Chris@1296: # Chris@1296: # Examples: Chris@1296: # scm_subversion_command: svn # (default: svn) Chris@1296: # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg) Chris@1296: # scm_git_command: /usr/local/bin/git # (default: git) Chris@1296: # scm_cvs_command: cvs # (default: cvs) Chris@1296: # scm_bazaar_command: bzr.exe # (default: bzr) Chris@1296: # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs) Chris@1296: # Chris@1296: scm_subversion_command: Chris@1296: scm_mercurial_command: Chris@1296: scm_git_command: Chris@1296: scm_cvs_command: Chris@1296: scm_bazaar_command: Chris@1296: scm_darcs_command: Chris@1296: Chris@1296: # Key used to encrypt sensitive data in the database (SCM and LDAP passwords). Chris@1296: # If you don't want to enable data encryption, just leave it blank. Chris@1296: # WARNING: losing/changing this key will make encrypted data unreadable. Chris@1296: # Chris@1296: # If you want to encrypt existing passwords in your database: Chris@1296: # * set the cipher key here in your configuration file Chris@1296: # * encrypt data using 'rake db:encrypt RAILS_ENV=production' Chris@1296: # Chris@1296: # If you have encrypted data and want to change this key, you have to: Chris@1296: # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first Chris@1296: # * change the cipher key here in your configuration file Chris@1296: # * encrypt data using 'rake db:encrypt RAILS_ENV=production' Chris@1296: database_cipher_key: Chris@1296: Chris@1296: # Set this to false to disable plugins' assets mirroring on startup. Chris@1296: # You can use `rake redmine:plugins:assets` to manually mirror assets Chris@1296: # to public/plugin_assets when you install/upgrade a Redmine plugin. Chris@1296: # Chris@1296: #mirror_plugins_assets_on_startup: false Chris@1296: Chris@1296: # Your secret key for verifying cookie session data integrity. If you Chris@1296: # change this key, all old sessions will become invalid! Make sure the Chris@1296: # secret is at least 30 characters and all random, no regular words or Chris@1296: # you'll be exposed to dictionary attacks. Chris@1296: # Chris@1296: # If you have a load-balancing Redmine cluster, you have to use the Chris@1296: # same secret token on each machine. Chris@1296: #secret_token: 'change it to a long random string' Chris@1296: Chris@1296: # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to Chris@1296: # the ImageMagick's `convert` binary. Used to generate attachment thumbnails. Chris@1296: #imagemagick_convert_command: Chris@1296: Chris@1296: # Configuration of RMagcik font. Chris@1296: # Chris@1296: # Redmine uses RMagcik in order to export gantt png. Chris@1296: # You don't need this setting if you don't install RMagcik. Chris@1296: # Chris@1296: # In CJK (Chinese, Japanese and Korean), Chris@1296: # in order to show CJK characters correctly, Chris@1296: # you need to set this configuration. Chris@1296: # Chris@1296: # Because there is no standard font across platforms in CJK, Chris@1296: # you need to set a font installed in your server. Chris@1296: # Chris@1296: # This setting is not necessary in non CJK. Chris@1296: # Chris@1296: # Examples for Japanese: Chris@1296: # Windows: Chris@1296: # rmagick_font_path: C:\windows\fonts\msgothic.ttc Chris@1296: # Linux: Chris@1296: # rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf Chris@1296: # Chris@1296: rmagick_font_path: Chris@1296: Chris@1296: # specific configuration options for production environment Chris@1296: # that overrides the default ones Chris@1296: production: Chris@1296: Chris@1296: # specific configuration options for development environment Chris@1296: # that overrides the default ones Chris@1296: development: