Project

General

Profile

Redmine 3.0.1 problem with email

Added by Alexey Markin about 9 years ago

Hello
I install Redmine 3.0.1 on FreeBSD 10.1. it's work.
But when I tune email notifications in config/configuration.yml, on administration page in redmine I see something like this:

Operating parameters of the mail server is not configured and function notification via email is not active. Adjust the settings for your SMTP-server you can file config / configuration.yml. To apply the changes, restart the application.

Configuration.yml file:

production:
email_delivery:
delivery_method: :smtp
smtp_settings:
address: m.kseon.ru
port: 25
authentication: :login
domain: kseon.ru
user_name: username
password: password
tls: true
enable_starttls_auto: :true

Advise what to do?

Sorry for my English)


Replies (2)

RE: Redmine 3.0.1 problem with email - Added by Leonel Iturralde about 9 years ago

Did you use spaces in the configuration.yml? (configuration.yml is not indented)
it must look like this

default:
  email_delivery:
    delivery_method: :smtp
    smtp_settings:
      enable_starttls_auto: true
      address: "smtp.gmail.com" 
      port: 587
      domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
      authentication: :plain
      user_name: "your_email@gmail.com" 
      password: "your_password" 

RE: Redmine 3.0.1 problem with email - Added by Alexey Markin about 9 years ago

Thanks a lot.
Necessary to correctly place the spases.
Notepad++ helped me.

    (1-2/2)