Content
I can't make email notification works
Added by stefano viacava almost 9 years ago
i try to use the smtp config, but it doesn’t work:
here is my configuration.yml
default:
rails_cache_store: <%= ENV.fetch(‘RAILS_CACHE_STORE’) { :memcache }.to_sym %>
session_store: <%= ENV.fetch(‘SESSION_STORE’) { :cache_store }.to_sym %>
email_delivery_method: smtp
smtp_address: 190.96.85.189
smtp_port: 25
smtp_domain: mail.fidelis.cl
smtp_user_name: “fidelia@fidelis.cl” <— this i’ts ok i validate
smtp_password: “password” <— this i’ts ok i validate
smtp_openssl_verify_mode: none
smtp_enable_starttls_auto: false
smtp_authentication: :login
attachments_storage_path: <%= ENV.fetch(‘ATTACHMENTS_STORAGE_PATH’) { “/var/db/_APP_NAME_/files” } %>
<% if (ENV[‘GIT_REPOSITORIES’] || ENV[‘SVN_REPOSITORIES’]).present? %>
scm:
<% if ENV[‘GIT_REPOSITORIES’].present? %>
git:
manages: <%= ENV[‘GIT_REPOSITORIES’] %>
mode: 0770
group: <%= ENV[‘SERVER_GROUP’] %>
<% end %>
<% if ENV[‘SVN_REPOSITORIES’].present? %>
subversion:
# SVN uses Apache repository wrapper due to permission errors in multi-user operation
manages: http://127.0.0.1/repoman_svn
# Do noot verify SSL certificates when SERVER_PROTOCOL is ‘https’.
# As we currently only support local repoman installations with packager,
# this option is set to true by default.
insecure: true
access_token: <%= ENV[‘SVN_REPOMAN_TOKEN’] %>
<% end %>
<% end %>
then i go to the administration on openproject and send the “test send mail” on configuration and return me this error
(535 Incorrect authentication data )
then i try with a gmail account and configuration, and doesn’t work too, now i see when i set something on the file “configuration.yml” this doesn’t take this configuration, why it’s that ? .
Plz Help me :D