Project

General

Profile

Defect #8412 » configuration-not-ok.yml

this file does not work - Ivan Cenov, 2011-05-21 20:13

 
1
# = Redmine configuration file
2
#
3
# Each environment has it's own configuration options.  If you are only
4
# running in production, only the production block needs to be configured.
5
# Environment specific configuration options override the default ones.
6
#
7
# Note that this file needs to be a valid YAML file.
8
#
9
# == Outgoing email settings (email_delivery setting)
10
#
11
# === Common configurations
12
#
13
# ==== Sendmail command
14
#
15
# production:
16
#   email_delivery:
17
#     delivery_method: :sendmail
18
#
19
# ==== Simple SMTP server at localhost
20
#
21
# production:
22
#   email_delivery:
23
#     delivery_method: :smtp
24
#     smtp_settings:
25
#       address: "localhost"
26
#       port: 25
27
#
28
# ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
29
#
30
# production:
31
#   email_delivery:
32
#     delivery_method: :smtp
33
#     smtp_settings:
34
#       address: "example.com"
35
#       port: 25
36
#       authentication: :login
37
#       domain: 'foo.com'
38
#       user_name: 'myaccount'
39
#       password: 'password'
40
#
41
# ==== SMTP server at example.com using PLAIN authentication
42
#
43
# production:
44
#   email_delivery:
45
#     delivery_method: :smtp
46
#     smtp_settings:
47
#       address: "example.com"
48
#       port: 25
49
#       authentication: :plain
50
#       domain: 'example.com'
51
#       user_name: 'myaccount'
52
#       password: 'password'
53
#
54
# ==== SMTP server at using TLS (GMail)
55
#
56
# This requires some additional configuration.  See the article at:
57
# http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/
58
#
59
# production:
60
#   email_delivery:
61
#     delivery_method: :smtp
62
#     smtp_settings:
63
#       tls: true
64
#       address: "smtp.gmail.com"
65
#       port: 587
66
#       domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
67
#       authentication: :plain
68
#       user_name: "your_email@gmail.com"
69
#       password: "your_password"
70
#
71
#
72

    
73
production:
74
  email_delivery:
75
    delivery_method: :smtp
76
    smtp_settings:
77
      address: "mail.botevgrad.com"
78
      port: 25
79
      domain: "okto7.com"
80

    
81
# === More configuration options
82
#
83
# See the "Configuration options" at the following website for a list of the
84
# full options allowed:
85
#
86
# http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer
87

    
88
#      user_name: "imc@okto7.com"
89

    
90
# default configuration options for all environments
91
default:
92
  # Outgoing emails configuration (see examples above)
93

    
94
# this is 1.1.x configuration
95
#production:
96
#  delivery_method: :smtp
97
#  smtp_settings:
98
#    address: "mail.botevgrad.com"
99
#    port: 25
100
#    domain: "okto7.com"
101

    
102
#  email_delivery:
103
#    delivery_method: :smtp
104
#    smtp_settings:
105
#      address: smtp.example.net
106
#      port: 25
107
#      domain: example.net
108
#      authentication: :login
109
#      user_name: "redmine@example.net"
110
#      password: "redmine"
111
  
112
  # Absolute path to the directory where attachments are stored.
113
  # The default is the 'files' directory in your Redmine instance.
114
  # Your Redmine instance needs to have write permission on this
115
  # directory.
116
  # Examples:
117
  # attachments_storage_path: /var/redmine/files
118
  # attachments_storage_path: D:/redmine/files
119
  attachments_storage_path:
120
  
121
  # Configuration of the autologin cookie.
122
  # autologin_cookie_name: the name of the cookie (default: autologin)
123
  # autologin_cookie_path: the cookie path (default: /)
124
  # autologin_cookie_secure: true sets the cookie secure flag (default: false)
125
  autologin_cookie_name:
126
  autologin_cookie_path:
127
  autologin_cookie_secure:
128
  
129
  # Configuration of SCM executable command.
130
  # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
131
  # On Windows, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
132
  # Examples:
133
  # scm_subversion_command: svn                                       # (default: svn)
134
  # scm_mercurial_command:  C:\Program Files\TortoiseHg\hg.exe        # (default: hg)
135
  # scm_git_command:        /usr/local/bin/git                        # (default: git)
136
  # scm_cvs_command:        cvs                                       # (default: cvs)
137
  # scm_bazaar_command:     bzr.exe                                   # (default: bzr)
138
  # scm_darcs_command:      darcs-1.0.9-i386-linux                    # (default: darcs)
139
  scm_subversion_command:
140
  scm_mercurial_command:
141
  scm_git_command:
142
  scm_cvs_command:
143
  scm_bazaar_command:
144
  scm_darcs_command:
145
  
146
  # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
147
  # If you don't want to enable data encryption, just leave it blank.
148
  # WARNING: losing/changing this key will make encrypted data unreadable.
149
  #
150
  # If you want to encrypt existing passwords in your database:
151
  # * set the cipher key here in your configuration file
152
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
153
  #
154
  # If you have encrypted data and want to change this key, you have to:
155
  # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
156
  # * change the cipher key here in your configuration file
157
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
158
  database_cipher_key: 
159
  
160
# specific configuration options for production environment
161
# that overrides the default ones
162
production:
163

    
164
# specific configuration options for development environment
165
# that overrides the default ones
166
development:
(2-2/2)