Error configuring Google Apps Email in Redmine 1.1.2
I have configured my email.yml in my Redmine installation, but when I try to send a test email, I get the following error message.
An error occurred while sending mail (%{value})
Here is a dump of my email.yml excluding the password details.
production:
delivery_method: :smtp
smtp_settings:
address开发者_StackOverflow中文版: smtp.gmail.com
port: 587
domain: <domain>.com
authentication: :login
user_name: "redmine@<domain>.com"
password: "<password>"
I am trying to configure Redmine instance to use google apps email service. PS: I have also installed smtp_tls in the lib folder of my installation using the following command
curl -O http://blog.expandrive.com/wp-content/uploads/2008/12/smtp_tls.rb
Also, in my config/environments/production.rb file, I have included
require "smtp_tls"
Any help is appreciated. I was expecting some error message in place of %{value} so not really sure what is going on here.
Have you tried the steps outlined at http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/? That is what I've been using for years now with no problems. Some other users have shared their own configurations and results in the comments.
精彩评论