Project

General

Profile

Redmine 3.0.2 email sending issue (530-5.5.1)

Added by Antoine Kolpacheque almost 9 years ago

Dear Sirs,

the problem is long-standing, but has become for me after the actual migration to version 3.0.2 from 2.5.1

--
An error occurred while sending mail (530-5.5.1 Authentication Required. Learn more at )

configuration.yml

email_delivery:
delivery_method: :async_smtp
async_smtp_settings:
address: bank-mail.int.capmosbank.ru
port: 25
domain: int.capmosbank.ru
authentication: :none
enable_starttls_auto: false
openssl_verify_mode: 'none'
--

and my Redmine env:

Environment:
Redmine version 3.0.2.stable
Ruby version 2.0.0-p645 (2015-04-13) [i386-mingw32]
Rails version 4.2.1
Environment production
Database adapter Mysql2
SCM:
Subversion 1.8.11
Git 1.9.5
Filesystem
Redmine plugins:
clipboard_image_paste 1.10

What am I doing wrong?


Replies (1)

RE: Redmine 3.0.2 email sending issue (530-5.5.1) - Added by Antoine Kolpacheque almost 9 years ago

BUMP!11

Fixed by adding production env block to configuration.yml

# default configuration options for all environments
default:
  # Outgoing emails configuration (see examples above)
  email_delivery:
    delivery_method: :async_smtp
    async_smtp_settings:
      address: bank-mail.int.capmosbank.ru
      port: 25
      domain: int.capmosbank.ru
      authentication: :none
      enable_starttls_auto: false
      openssl_verify_mode: 'none'

production:
  # Outgoing emails configuration (see examples above)
  email_delivery:
    delivery_method: :async_smtp
    async_smtp_settings:
      address: bank-mail.int.capmosbank.ru
      port: 25
      domain: int.capmosbank.ru
      authentication: :none
      enable_starttls_auto: false
      openssl_verify_mode: 'none'
    (1-1/1)