annotate .svn/pristine/58/5852d7fa42575c6a27e640ff68cec09c3d3e0a43.svn-base @ 1519:afce8026aaeb redmine-2.4-integration

Merge from branch "live"
author Chris Cannam
date Tue, 09 Sep 2014 09:34:53 +0100
parents cbb26bc654de
children
rev   line source
Chris@909 1 # = Redmine configuration file
Chris@909 2 #
Chris@909 3 # Each environment has it's own configuration options. If you are only
Chris@909 4 # running in production, only the production block needs to be configured.
Chris@909 5 # Environment specific configuration options override the default ones.
Chris@909 6 #
Chris@909 7 # Note that this file needs to be a valid YAML file.
Chris@909 8 # DO NOT USE TABS! Use 2 spaces instead of tabs for identation.
Chris@909 9 #
Chris@909 10 # == Outgoing email settings (email_delivery setting)
Chris@909 11 #
Chris@909 12 # === Common configurations
Chris@909 13 #
Chris@909 14 # ==== Sendmail command
Chris@909 15 #
Chris@909 16 # production:
Chris@909 17 # email_delivery:
Chris@909 18 # delivery_method: :sendmail
Chris@909 19 #
Chris@909 20 # ==== Simple SMTP server at localhost
Chris@909 21 #
Chris@909 22 # production:
Chris@909 23 # email_delivery:
Chris@909 24 # delivery_method: :smtp
Chris@909 25 # smtp_settings:
Chris@909 26 # address: "localhost"
Chris@909 27 # port: 25
Chris@909 28 #
Chris@909 29 # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
Chris@909 30 #
Chris@909 31 # production:
Chris@909 32 # email_delivery:
Chris@909 33 # delivery_method: :smtp
Chris@909 34 # smtp_settings:
Chris@909 35 # address: "example.com"
Chris@909 36 # port: 25
Chris@909 37 # authentication: :login
Chris@909 38 # domain: 'foo.com'
Chris@909 39 # user_name: 'myaccount'
Chris@909 40 # password: 'password'
Chris@909 41 #
Chris@909 42 # ==== SMTP server at example.com using PLAIN authentication
Chris@909 43 #
Chris@909 44 # production:
Chris@909 45 # email_delivery:
Chris@909 46 # delivery_method: :smtp
Chris@909 47 # smtp_settings:
Chris@909 48 # address: "example.com"
Chris@909 49 # port: 25
Chris@909 50 # authentication: :plain
Chris@909 51 # domain: 'example.com'
Chris@909 52 # user_name: 'myaccount'
Chris@909 53 # password: 'password'
Chris@909 54 #
Chris@909 55 # ==== SMTP server at using TLS (GMail)
Chris@909 56 #
Chris@909 57 # This requires some additional configuration. See the article at:
Chris@909 58 # http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/
Chris@909 59 #
Chris@909 60 # production:
Chris@909 61 # email_delivery:
Chris@909 62 # delivery_method: :smtp
Chris@909 63 # smtp_settings:
Chris@909 64 # tls: true
Chris@909 65 # enable_starttls_auto: true
Chris@909 66 # address: "smtp.gmail.com"
Chris@909 67 # port: 587
Chris@909 68 # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
Chris@909 69 # authentication: :plain
Chris@909 70 # user_name: "your_email@gmail.com"
Chris@909 71 # password: "your_password"
Chris@909 72 #
Chris@909 73 #
Chris@909 74 # === More configuration options
Chris@909 75 #
Chris@909 76 # See the "Configuration options" at the following website for a list of the
Chris@909 77 # full options allowed:
Chris@909 78 #
Chris@909 79 # http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer
Chris@909 80
Chris@909 81
Chris@909 82 # default configuration options for all environments
Chris@909 83 default:
Chris@909 84 # Outgoing emails configuration (see examples above)
Chris@909 85 email_delivery:
Chris@909 86 delivery_method: :smtp
Chris@909 87 smtp_settings:
Chris@909 88 address: smtp.example.net
Chris@909 89 port: 25
Chris@909 90 domain: example.net
Chris@909 91 authentication: :login
Chris@909 92 user_name: "redmine@example.net"
Chris@909 93 password: "redmine"
Chris@909 94
Chris@909 95 # Absolute path to the directory where attachments are stored.
Chris@909 96 # The default is the 'files' directory in your Redmine instance.
Chris@909 97 # Your Redmine instance needs to have write permission on this
Chris@909 98 # directory.
Chris@909 99 # Examples:
Chris@909 100 # attachments_storage_path: /var/redmine/files
Chris@909 101 # attachments_storage_path: D:/redmine/files
Chris@909 102 attachments_storage_path:
Chris@909 103
Chris@909 104 # Configuration of the autologin cookie.
Chris@909 105 # autologin_cookie_name: the name of the cookie (default: autologin)
Chris@909 106 # autologin_cookie_path: the cookie path (default: /)
Chris@909 107 # autologin_cookie_secure: true sets the cookie secure flag (default: false)
Chris@909 108 autologin_cookie_name:
Chris@909 109 autologin_cookie_path:
Chris@909 110 autologin_cookie_secure:
Chris@909 111
Chris@909 112 # Configuration of SCM executable command.
Chris@909 113 #
Chris@909 114 # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
Chris@909 115 # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
Chris@909 116 #
Chris@909 117 # On Windows + JRuby 1.6.2, path which contains spaces does not work.
Chris@909 118 # For example, "C:\Program Files\TortoiseHg\hg.exe".
Chris@909 119 # If you want to this feature, you need to install to the path which does not contains spaces.
Chris@909 120 # For example, "C:\TortoiseHg\hg.exe".
Chris@909 121 #
Chris@909 122 # Examples:
Chris@909 123 # scm_subversion_command: svn # (default: svn)
Chris@909 124 # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg)
Chris@909 125 # scm_git_command: /usr/local/bin/git # (default: git)
Chris@909 126 # scm_cvs_command: cvs # (default: cvs)
Chris@909 127 # scm_bazaar_command: bzr.exe # (default: bzr)
Chris@909 128 # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs)
Chris@909 129 #
Chris@909 130 scm_subversion_command:
Chris@909 131 scm_mercurial_command:
Chris@909 132 scm_git_command:
Chris@909 133 scm_cvs_command:
Chris@909 134 scm_bazaar_command:
Chris@909 135 scm_darcs_command:
Chris@909 136
Chris@909 137 # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
Chris@909 138 # If you don't want to enable data encryption, just leave it blank.
Chris@909 139 # WARNING: losing/changing this key will make encrypted data unreadable.
Chris@909 140 #
Chris@909 141 # If you want to encrypt existing passwords in your database:
Chris@909 142 # * set the cipher key here in your configuration file
Chris@909 143 # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
Chris@909 144 #
Chris@909 145 # If you have encrypted data and want to change this key, you have to:
Chris@909 146 # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
Chris@909 147 # * change the cipher key here in your configuration file
Chris@909 148 # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
Chris@909 149 database_cipher_key:
Chris@909 150
Chris@909 151 # specific configuration options for production environment
Chris@909 152 # that overrides the default ones
Chris@909 153 production:
Chris@909 154
Chris@909 155 # specific configuration options for development environment
Chris@909 156 # that overrides the default ones
Chris@909 157 development: