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