Project

General

Profile

An error occurred while sending mail (504 Authenticate fi... ยป configuration.yml

Mostafa Itani, 2016-06-20 14:00

 
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
      
19
      address: mail.telepaty.com
20
      port: 587
21
      domain: telepaty.net
22
      authentication: :none
23
      user_name:
24
      password:
25

    
26

    
27
  # ==== Simple SMTP server at localhost
28
  #
29
  #  email_delivery:
30
    delivery_method: :smtp
31
    smtp_settings:
32
      
33
      address: smtp.gmail.com
34
      port: 587
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: smtp.gmail.com
52
      port: 587
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: smtp.gmail.com
74
      port: 587
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: smtp.gmail.com
98
      port: 587
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: smtp.gmail.com
121
      port: 587
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: D:/redmine/files
136
  attachments_storage_path:
137

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

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

    
171
  # SCM paths validation.
172
  #
173
  # You can configure a regular expression for each SCM that will be used to
174
  # validate the path of new repositories (eg. path entered by users with the
175
  # "Manage repositories" permission and path returned by reposman.rb).
176
  # The regexp will be wrapped with \A \z, so it must match the whole path.
177
  # And the regexp is case sensitive.
178
  #
179
  # You can match the project identifier by using %project% in the regexp.
180
  #
181
  # You can also set a custom hint message for each SCM that will be displayed
182
  # on the repository form instead of the default one.
183
  #
184
  # Examples:
185
  # scm_subversion_path_regexp: file:///svnpath/[a-z0-9_]+
186
  # scm_subversion_path_info: SVN URL (eg. file:///svnpath/foo)
187
  #
188
  # scm_git_path_regexp: /gitpath/%project%(\.[a-z0-9_])?/
189
  #
190
  scm_subversion_path_regexp:
191
  scm_mercurial_path_regexp:
192
  scm_git_path_regexp:
193
  scm_cvs_path_regexp:
194
  scm_bazaar_path_regexp:
195
  scm_darcs_path_regexp:
196
  scm_filesystem_path_regexp:
197

    
198
  # Absolute path to the SCM commands errors (stderr) log file.
199
  # The default is to log in the 'log' directory of your Redmine instance.
200
  # Example:
201
  # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
202
  scm_stderr_log_file:
203

    
204
  # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
205
  # If you don't want to enable data encryption, just leave it blank.
206
  # WARNING: losing/changing this key will make encrypted data unreadable.
207
  #
208
  # If you want to encrypt existing passwords in your database:
209
  # * set the cipher key here in your configuration file
210
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
211
  #
212
  # If you have encrypted data and want to change this key, you have to:
213
  # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
214
  # * change the cipher key here in your configuration file
215
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
216
  database_cipher_key:
217

    
218
  # Set this to false to disable plugins' assets mirroring on startup.
219
  # You can use `rake redmine:plugins:assets` to manually mirror assets
220
  # to public/plugin_assets when you install/upgrade a Redmine plugin.
221
  #
222
  #mirror_plugins_assets_on_startup: false
223

    
224
  # Your secret key for verifying cookie session data integrity. If you
225
  # change this key, all old sessions will become invalid! Make sure the
226
  # secret is at least 30 characters and all random, no regular words or
227
  # you'll be exposed to dictionary attacks.
228
  #
229
  # If you have a load-balancing Redmine cluster, you have to use the
230
  # same secret token on each machine.
231
  #secret_token: 'change it to a long random string'
232

    
233
  # Requires users to re-enter their password for sensitive actions (editing
234
  # of account data, project memberships, application settings, user, group,
235
  # role, auth source management and project deletion). Disabled by default.
236
  # Timeout is set in minutes.
237
  #
238
  #sudo_mode: true
239
  #sudo_mode_timeout: 15
240

    
241
  # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
242
  # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
243
  imagemagick_convert_command: 'C:\Bitnami\redmine-3.2.1-0/imagemagick/convert.exe'
244

    
245
  # Configuration of RMagick font.
246
  #
247
  # Redmine uses RMagick in order to export gantt png.
248
  # You don't need this setting if you don't install RMagick.
249
  #
250
  # In CJK (Chinese, Japanese and Korean),
251
  # in order to show CJK characters correctly,
252
  # you need to set this configuration.
253
  #
254
  # Because there is no standard font across platforms in CJK,
255
  # you need to set a font installed in your server.
256
  #
257
  # This setting is not necessary in non CJK.
258
  #
259
  # Examples for Japanese:
260
  #   Windows:
261
  #     rmagick_font_path: C:\windows\fonts\msgothic.ttc
262
  #   Linux:
263
  #     rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
264
  #
265
  rmagick_font_path:
266

    
267
  # Maximum number of simultaneous AJAX uploads
268
  #max_concurrent_ajax_uploads: 2
269

    
270
  # Configure OpenIdAuthentication.store
271
  #
272
  # allowed values: :memory, :file, :memcache
273
  #openid_authentication_store: :memory
274

    
275
# specific configuration options for production environment
276
# that overrides the default ones
277
production:
278
  email_delivery:
279
    delivery_method: :smtp
280
    smtp_settings:
281
      
282
      address: mail.telepaty.com
283
      port: 587
284
      domain: telepaty.net
285
      authentication: :none
286
      user_name: 
287
      password:
288

    
289
# specific configuration options for development environment
290
# that overrides the default ones
291
development:
    (1-1/1)