Project

General

Profile

RE: Emal notification - (Connection refused - connect(2)) » configuration.yml

Lorenzo Godina, 2015-01-27 14:18

 
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
# DO NOT USE TABS! Use 2 spaces instead of tabs for identation.
9

    
10
# default configuration options for all environments
11
default:
12
  # Outgoing emails configuration
13
  # See the examples below and the Rails guide for more configuration options:
14
  # http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration
15
  email_delivery:
16
    delivery_method: :smtp
17
    smtp_settings:
18
      enable_starttls_auto: true
19
      address: "smtp.gmail.com"
20
      port: '587'
21
      domain: "smtp.gmail.com"
22
      authentication: :plain
23
      user_name: "logo76.redmine@gmail.com"
24
      password: "MY_PASSWORD"
25

    
26

    
27
  # ==== Simple SMTP server at localhost
28
  #
29
  #  email_delivery:
30
    delivery_method: :smtp
31
    smtp_settings:
32
      
33
      address: 
34
      port: 
35
      domain: example.net
36
      authentication: :login
37
      user_name: 
38
      password: 
39

    
40
  #    delivery_method: :smtp
41
  #    smtp_settings:
42
  #      address: "localhost"
43
  #      port: 25
44
  #
45
  # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
46
  #
47
  #  email_delivery:
48
    delivery_method: :smtp
49
    smtp_settings:
50
      
51
      address: 
52
      port: 
53
      domain: example.net
54
      authentication: :login
55
      user_name: 
56
      password: 
57

    
58
  #    delivery_method: :smtp
59
  #    smtp_settings:
60
  #      address: "example.com"
61
  #      port: 25
62
  #      authentication: :login
63
  #      domain: 'foo.com'
64
  #      user_name: 'myaccount'
65
  #      password: 'password'
66
  #
67
  # ==== SMTP server at example.com using PLAIN authentication
68
  #
69
  #  email_delivery:
70
    delivery_method: :smtp
71
    smtp_settings:
72
      
73
      address: 
74
      port: 
75
      domain: example.net
76
      authentication: :login
77
      user_name: 
78
      password: 
79

    
80
  #    delivery_method: :smtp
81
  #    smtp_settings:
82
  #      address: "example.com"
83
  #      port: 25
84
  #      authentication: :plain
85
  #      domain: 'example.com'
86
  #      user_name: 'myaccount'
87
  #      password: 'password'
88
  #
89
  # ==== SMTP server at using TLS (GMail)
90
  # This might require some additional configuration. See the guides at:
91
  # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration
92
  #
93
  #  email_delivery:
94
    delivery_method: :smtp
95
    smtp_settings:
96
      
97
      address: 
98
      port: 
99
      domain: example.net
100
      authentication: :login
101
      user_name: 
102
      password: 
103

    
104
  #    delivery_method: :smtp
105
  #    smtp_settings:
106
  #      enable_starttls_auto: true
107
  #      address: "smtp.gmail.com"
108
  #      port: 587
109
  #      domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
110
  #      authentication: :plain
111
  #      user_name: "your_email@gmail.com"
112
  #      password: "your_password"
113
  #
114
  # ==== Sendmail command
115
  #
116
  #  email_delivery:
117
    delivery_method: :smtp
118
    smtp_settings:
119
      
120
      address: 
121
      port: 
122
      domain: example.net
123
      authentication: :login
124
      user_name: 
125
      password: 
126

    
127
  #    delivery_method: :sendmail
128

    
129
  # Absolute path to the directory where attachments are stored.
130
  # The default is the 'files' directory in your Redmine instance.
131
  # Your Redmine instance needs to have write permission on this
132
  # directory.
133
  # Examples:
134
  # attachments_storage_path: /var/redmine/files
135
  attachments_storage_path:
136

    
137
  # Configuration of the autologin cookie.
138
  # autologin_cookie_name: the name of the cookie (default: autologin)
139
  # autologin_cookie_path: the cookie path (default: /)
140
  # autologin_cookie_secure: true sets the cookie secure flag (default: false)
141
  autologin_cookie_name:
142
  autologin_cookie_path:
143
  autologin_cookie_secure:
144

    
145
  # Configuration of SCM executable command.
146
  #
147
  # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
148
  # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
149
  #
150
  # On Windows + JRuby 1.6.2, path which contains spaces does not work.
151
  # For example, "C:\Program Files\TortoiseHg\hg.exe".
152
  # If you want to this feature, you need to install to the path which does not contains spaces.
153
  # For example, "C:\TortoiseHg\hg.exe".
154
  #
155
  # Examples:
156
  # scm_subversion_command: svn                                       # (default: svn)
157
  # scm_mercurial_command:  C:\Program Files\TortoiseHg\hg.exe        # (default: hg)
158
  # scm_git_command:        /usr/local/bin/git                        # (default: git)
159
  # scm_cvs_command:        cvs                                       # (default: cvs)
160
  # scm_bazaar_command:     bzr.exe                                   # (default: bzr)
161
  # scm_darcs_command:      darcs-1.0.9-i386-linux                    # (default: darcs)
162
  #
163
  scm_subversion_command:
164
  scm_mercurial_command:
165
  scm_git_command:
166
  scm_cvs_command:
167
  scm_bazaar_command:
168
  scm_darcs_command:
169

    
170
  # Absolute path to the SCM commands errors (stderr) log file.
171
  # The default is to log in the 'log' directory of your Redmine instance.
172
  # Example:
173
  # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
174
  scm_stderr_log_file:
175

    
176
  # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
177
  # If you don't want to enable data encryption, just leave it blank.
178
  # WARNING: losing/changing this key will make encrypted data unreadable.
179
  #
180
  # If you want to encrypt existing passwords in your database:
181
  # * set the cipher key here in your configuration file
182
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
183
  #
184
  # If you have encrypted data and want to change this key, you have to:
185
  # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
186
  # * change the cipher key here in your configuration file
187
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
188
  database_cipher_key:
189

    
190
  # Set this to false to disable plugins' assets mirroring on startup.
191
  # You can use `rake redmine:plugins:assets` to manually mirror assets
192
  # to public/plugin_assets when you install/upgrade a Redmine plugin.
193
  #
194
  #mirror_plugins_assets_on_startup: false
195

    
196
  # Your secret key for verifying cookie session data integrity. If you
197
  # change this key, all old sessions will become invalid! Make sure the
198
  # secret is at least 30 characters and all random, no regular words or
199
  # you'll be exposed to dictionary attacks.
200
  #
201
  # If you have a load-balancing Redmine cluster, you have to use the
202
  # same secret token on each machine.
203
  #secret_token: 'change it to a long random string'
204

    
205
  # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
206
  # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
207
  imagemagick_convert_command: '/opt/bitnami/common/bin/convert'
208

    
209
  # Configuration of RMagcik font.
210
  #
211
  # Redmine uses RMagcik in order to export gantt png.
212
  # You don't need this setting if you don't install RMagcik.
213
  #
214
  # In CJK (Chinese, Japanese and Korean),
215
  # in order to show CJK characters correctly,
216
  # you need to set this configuration.
217
  #
218
  # Because there is no standard font across platforms in CJK,
219
  # you need to set a font installed in your server.
220
  #
221
  # This setting is not necessary in non CJK.
222
  #
223
  # Examples for Japanese:
224
  #   Windows:
225
  #     rmagick_font_path: C:\windows\fonts\msgothic.ttc
226
  #   Linux:
227
  #     rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
228
  #
229
  rmagick_font_path:
230

    
231
  # Maximum number of simultaneous AJAX uploads
232
  #max_concurrent_ajax_uploads: 2
233

    
234
  # Configure OpenIdAuthentication.store
235
  #
236
  # allowed values: :memory, :file, :memcache
237
  #openid_authentication_store: :memory
238

    
239
# specific configuration options for production environment
240
# that overrides the default ones
241
production:
242

    
243
# specific configuration options for development environment
244
# that overrides the default ones
245
development:
246
# = Redmine configuration file
(1-1/2)