Redmine 3.3.1 - Emails issues with smtp.
Added by Ignacio Martin almost 8 years ago
Hi,
I've just upgrade from 3.1.0 to 3.3.1 and my email notifications stopped working.
I've set config/configuration.yml the same as the older version but I' getting this message when testing email notifications:
An error occurred while sending mail (execution expired)
Here is my configuration for my stmp server:
production: email_delivery: delivery_method: :smtp smtp_settings: # enable_starttls_auto: true address: "smtp.webfaction.com" port: '25' domain: "track.inglobe.com.ar" authentication: :login user_name: "my_account" password: "my_password"
Is anyone getting the same error? I think maybe is something about permissions for logs o something like that?
Thank you
Replies (2)
RE: Redmine 3.3.1 - Emails issues with smtp. - Added by Steve Zhou almost 8 years ago
Hi,
Please try my configuration as below.
========================================
email_delivery:
delivery_method: :smtp
smtp_settings:
tls: false
address: smtp.webfaction.com
port: 25
domain: track.inglobe.com.ar
authentication: :login
enable_starttls_auto: false
user_name: my_account
password: my_password
production:
========================================
RE: Redmine 3.3.1 - Emails issues with smtp. - Added by Steve Zhou almost 8 years ago
You can also upload your configuration.yml file, I can help you to check it.