Chris@909: # = Redmine configuration file Chris@909: # Chris@909: # Each environment has it's own configuration options. If you are only Chris@909: # running in production, only the production block needs to be configured. Chris@909: # Environment specific configuration options override the default ones. Chris@909: # Chris@909: # Note that this file needs to be a valid YAML file. Chris@909: # DO NOT USE TABS! Use 2 spaces instead of tabs for identation. Chris@909: # Chris@909: # == Outgoing email settings (email_delivery setting) Chris@909: # Chris@909: # === Common configurations Chris@909: # Chris@909: # ==== Sendmail command Chris@909: # Chris@909: # production: Chris@909: # email_delivery: Chris@909: # delivery_method: :sendmail Chris@909: # Chris@909: # ==== Simple SMTP server at localhost Chris@909: # Chris@909: # production: Chris@909: # email_delivery: Chris@909: # delivery_method: :smtp Chris@909: # smtp_settings: Chris@909: # address: "localhost" Chris@909: # port: 25 Chris@909: # Chris@909: # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com Chris@909: # Chris@909: # production: Chris@909: # email_delivery: Chris@909: # delivery_method: :smtp Chris@909: # smtp_settings: Chris@909: # address: "example.com" Chris@909: # port: 25 Chris@909: # authentication: :login Chris@909: # domain: 'foo.com' Chris@909: # user_name: 'myaccount' Chris@909: # password: 'password' Chris@909: # Chris@909: # ==== SMTP server at example.com using PLAIN authentication Chris@909: # Chris@909: # production: Chris@909: # email_delivery: Chris@909: # delivery_method: :smtp Chris@909: # smtp_settings: Chris@909: # address: "example.com" Chris@909: # port: 25 Chris@909: # authentication: :plain Chris@909: # domain: 'example.com' Chris@909: # user_name: 'myaccount' Chris@909: # password: 'password' Chris@909: # Chris@909: # ==== SMTP server at using TLS (GMail) Chris@909: # Chris@909: # This requires some additional configuration. See the article at: Chris@909: # http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/ Chris@909: # Chris@909: # production: Chris@909: # email_delivery: Chris@909: # delivery_method: :smtp Chris@909: # smtp_settings: Chris@909: # tls: true Chris@909: # enable_starttls_auto: true Chris@909: # address: "smtp.gmail.com" Chris@909: # port: 587 Chris@909: # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps Chris@909: # authentication: :plain Chris@909: # user_name: "your_email@gmail.com" Chris@909: # password: "your_password" Chris@909: # Chris@909: # Chris@909: # === More configuration options Chris@909: # Chris@909: # See the "Configuration options" at the following website for a list of the Chris@909: # full options allowed: Chris@909: # Chris@909: # http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer Chris@909: Chris@909: Chris@909: # default configuration options for all environments Chris@909: default: Chris@909: # Outgoing emails configuration (see examples above) Chris@909: email_delivery: Chris@909: delivery_method: :smtp Chris@909: smtp_settings: Chris@909: address: smtp.example.net Chris@909: port: 25 Chris@909: domain: example.net Chris@909: authentication: :login Chris@909: user_name: "redmine@example.net" Chris@909: password: "redmine" Chris@909: Chris@909: # Absolute path to the directory where attachments are stored. Chris@909: # The default is the 'files' directory in your Redmine instance. Chris@909: # Your Redmine instance needs to have write permission on this Chris@909: # directory. Chris@909: # Examples: Chris@909: # attachments_storage_path: /var/redmine/files Chris@909: # attachments_storage_path: D:/redmine/files Chris@909: attachments_storage_path: Chris@909: Chris@909: # Configuration of the autologin cookie. Chris@909: # autologin_cookie_name: the name of the cookie (default: autologin) Chris@909: # autologin_cookie_path: the cookie path (default: /) Chris@909: # autologin_cookie_secure: true sets the cookie secure flag (default: false) Chris@909: autologin_cookie_name: Chris@909: autologin_cookie_path: Chris@909: autologin_cookie_secure: Chris@909: Chris@909: # Configuration of SCM executable command. Chris@909: # Chris@909: # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe) Chris@909: # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work. Chris@909: # Chris@909: # On Windows + JRuby 1.6.2, path which contains spaces does not work. Chris@909: # For example, "C:\Program Files\TortoiseHg\hg.exe". Chris@909: # If you want to this feature, you need to install to the path which does not contains spaces. Chris@909: # For example, "C:\TortoiseHg\hg.exe". Chris@909: # Chris@909: # Examples: Chris@909: # scm_subversion_command: svn # (default: svn) Chris@909: # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg) Chris@909: # scm_git_command: /usr/local/bin/git # (default: git) Chris@909: # scm_cvs_command: cvs # (default: cvs) Chris@909: # scm_bazaar_command: bzr.exe # (default: bzr) Chris@909: # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs) Chris@909: # Chris@909: scm_subversion_command: Chris@909: scm_mercurial_command: Chris@909: scm_git_command: Chris@909: scm_cvs_command: Chris@909: scm_bazaar_command: Chris@909: scm_darcs_command: Chris@909: Chris@909: # Key used to encrypt sensitive data in the database (SCM and LDAP passwords). Chris@909: # If you don't want to enable data encryption, just leave it blank. Chris@909: # WARNING: losing/changing this key will make encrypted data unreadable. Chris@909: # Chris@909: # If you want to encrypt existing passwords in your database: Chris@909: # * set the cipher key here in your configuration file Chris@909: # * encrypt data using 'rake db:encrypt RAILS_ENV=production' Chris@909: # Chris@909: # If you have encrypted data and want to change this key, you have to: Chris@909: # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first Chris@909: # * change the cipher key here in your configuration file Chris@909: # * encrypt data using 'rake db:encrypt RAILS_ENV=production' Chris@909: database_cipher_key: Chris@909: Chris@909: # specific configuration options for production environment Chris@909: # that overrides the default ones Chris@909: production: Chris@909: Chris@909: # specific configuration options for development environment Chris@909: # that overrides the default ones Chris@909: development: