Project

General

Profile

SMTP Notification emails incomplete and won't send ยป configuration.yml

Jason Fox, 2018-06-29 19:33

 
1

    
2
# = Redmine configuration file
3
#
4
# Each environment has it's own configuration options.  If you are only
5
# running in production, only the production block needs to be configured.
6
# Environment specific configuration options override the default ones.
7
#
8
# Note that this file needs to be a valid YAML file.
9
# DO NOT USE TABS! Use 2 spaces instead of tabs for identation.
10

    
11
# default configuration options for all environments
12
default:
13
  # Outgoing emails configuration
14
  # See the examples below and the Rails guide for more configuration options:
15
  # http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration
16
  #  email_delivery:
17

    
18
  # ==== Simple SMTP server at localhost
19
  #
20
  #  email_delivery:
21
  #    delivery_method: :smtp
22
  #    smtp_settings:
23
  #      address: "localhost"
24
  #      port: 25
25
  #
26
  # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
27
  #
28
  #  email_delivery:
29
  #    delivery_method: :smtp
30
  #    smtp_settings:
31
  #      address: "example.com"
32
  #      port: 25
33
  #      authentication: :login
34
  #      domain: 'foo.com'
35
  #      user_name: 'myaccount'
36
  #      password: 'password'
37
  #
38
  # ==== SMTP server at example.com using PLAIN authentication
39
  #
40
  #email_delivery:
41
  # delivery_method: :smtp
42
  # smtp_settings:
43
  #    enable_starttls_auto: true
44
  #    address: smtpgw1.hi.hubbell-ad.com 
45
  #    port: 587
46
  #    authentication: :plain
47
  #    user_name: "rddept@gai-tronics.com"
48
  #    password: "Exch@nge#9"
49
  #
50

    
51
  email_delivery:
52
    delivery_method: :async_smtp
53
    smtp_settings:
54
      openssl_verify_mode: 'none'
55
      address: opt740
56
      port: 25
57

    
58
  #    authentication: :login
59
  #  user_name: "rddept@gai-tronics.com" 
60
  #  password: "Exch@nge#9"
61
  #  openssl_verify_mode: 'none' 
62
  #
63
  # ==== SMTP server at using TLS (GMail)
64
  # This might require some additional configuration. See the guides at:
65
  # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration
66
  #
67
  #  email_delivery:
68

    
69
  #    delivery_method: :smtp
70
  #    smtp_settings:
71
  #      enable_starttls_auto: true
72
  #      address: "smtp.gmail.com"
73
  #      port: 587
74
  #      domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
75
  #      authentication: :plain
76
  #      user_name: "your_email@gmail.com"
77
  #      password: "your_password"
78
  #
79
  # ==== Sendmail command
80
  #
81
  #email_delivery:
82
  #  delivery_method: :sendmail
83
  #
84
  # Absolute path to the directory where attachments are stored.
85
  # The default is the 'files' directory in your Redmine instance.
86
  # Your Redmine instance needs to have write permission on this
87
  # directory.
88
  # Examples:
89
  # attachments_storage_path: /var/redmine/files
90
  # attachments_storage_path: D:/redmine/files
91
  attachments_storage_path:
92

    
93
  # Configuration of the autologin cookie.
94
  # autologin_cookie_name: the name of the cookie (default: autologin)
95
  # autologin_cookie_path: the cookie path (default: /)
96
  # autologin_cookie_secure: true sets the cookie secure flag (default: false)
97
  autologin_cookie_name:
98
  autologin_cookie_path:
99
  autologin_cookie_secure:
100

    
101
  # Configuration of SCM executable command.
102
  #
103
  # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
104
  # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
105
  #
106
  # On Windows + JRuby 1.6.2, path which contains spaces does not work.
107
  # For example, "C:\Program Files\TortoiseHg\hg.exe".
108
  # If you want to this feature, you need to install to the path which does not contains spaces.
109
  # For example, "C:\TortoiseHg\hg.exe".
110
  #
111
  # Examples:
112
  # scm_subversion_command: svn                                       # (default: svn)
113
  # scm_mercurial_command:  C:\Program Files\TortoiseHg\hg.exe        # (default: hg)
114
  # scm_git_command:        /usr/local/bin/git                        # (default: git)
115
  # scm_cvs_command:        cvs                                       # (default: cvs)
116
  # scm_bazaar_command:     bzr.exe                                   # (default: bzr)
117
  # scm_darcs_command:      darcs-1.0.9-i386-linux                    # (default: darcs)
118
  #
119
  scm_subversion_command:
120
  scm_mercurial_command:
121
  scm_git_command:
122
  scm_cvs_command:
123
  scm_bazaar_command:
124
  scm_darcs_command:
125

    
126
  # SCM paths validation.
127
  #
128
  # You can configure a regular expression for each SCM that will be used to
129
  # validate the path of new repositories (eg. path entered by users with the
130
  # "Manage repositories" permission and path returned by reposman.rb).
131
  # The regexp will be wrapped with \A \z, so it must match the whole path.
132
  # And the regexp is case sensitive.
133
  #
134
  # You can match the project identifier by using %project% in the regexp.
135
  #
136
  # You can also set a custom hint message for each SCM that will be displayed
137
  # on the repository form instead of the default one.
138
  #
139
  # Examples:
140
  # scm_subversion_path_regexp: file:///svnpath/[a-z0-9_]+
141
  # scm_subversion_path_info: SVN URL (eg. file:///svnpath/foo)
142
  #
143
  # scm_git_path_regexp: /gitpath/%project%(\.[a-z0-9_])?/
144
  #
145
  scm_subversion_path_regexp:
146
  scm_mercurial_path_regexp:
147
  scm_git_path_regexp:
148
  scm_cvs_path_regexp:
149
  scm_bazaar_path_regexp:
150
  scm_darcs_path_regexp:
151
  scm_filesystem_path_regexp:
152

    
153

    
154

    
155
  # Absolute path to the SCM commands errors (stderr) log file.
156
  # The default is to log in the 'log' directory of your Redmine instance.
157
  # Example:
158
  # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
159
  scm_stderr_log_file:
160

    
161
  # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
162
  # If you don't want to enable data encryption, just leave it blank.
163
  # WARNING: losing/changing this key will make encrypted data unreadable.
164
  #
165
  # If you want to encrypt existing passwords in your database:
166
  # * set the cipher key here in your configuration file
167
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
168
  #
169
  # If you have encrypted data and want to change this key, you have to:
170
  # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
171
  # * change the cipher key here in your configuration file
172
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
173
  database_cipher_key:
174

    
175
  # Set this to false to disable plugins' assets mirroring on startup.
176
  # You can use `rake redmine:plugins:assets` to manually mirror assets
177
  # to public/plugin_assets when you install/upgrade a Redmine plugin.
178
  #
179
  #mirror_plugins_assets_on_startup: false
180

    
181
  # Your secret key for verifying cookie session data integrity. If you
182
  # change this key, all old sessions will become invalid! Make sure the
183
  # secret is at least 30 characters and all random, no regular words or
184
  # you'll be exposed to dictionary attacks.
185
  #
186
  # If you have a load-balancing Redmine cluster, you have to use the
187
  # same secret token on each machine.
188
  #secret_token: 'change it to a long random string'
189

    
190
  # Requires users to re-enter their password for sensitive actions (editing
191
  # of account data, project memberships, application settings, user, group,
192
  # role, auth source management and project deletion). Disabled by default.
193
  # Timeout is set in minutes.
194
  #
195
  #sudo_mode: true
196
  #sudo_mode_timeout: 15
197

    
198
  # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
199
  # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
200
  #imagemagick_convert_command:
201

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

    
224
  # Maximum number of simultaneous AJAX uploads
225
  #max_concurrent_ajax_uploads: 2
226

    
227
  # Configure OpenIdAuthentication.store
228
  #
229
  # allowed values: :memory, :file, :memcache
230
  #openid_authentication_store: :memory
231

    
232
# specific configuration options for production environment
233
# that overrides the default ones
234
production:
235

    
236
# specific configuration options for development environment
237
# that overrides the default ones
238
development:
    (1-1/1)