Question

I tried to configure actionmailer to send via google apps with smtp.

config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address              => "smtp.gmail.com",
:port                 => 587,
:domain               => "mydomain.com",
:user_name            => "username",
:password             => "password",
:authentication       => 'plain',
:enable_starttls_auto => true  }

config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true

However whenever gitlab tries to send an e-mail:

Sent mail to user@my.domain.com (10ms)
Completed 500 Internal Server Error in 29ms

535-5.7.1 Username and Password not accepted

Server runs ruby 1.9.3p194. Why doesn't google apps accept the username/password?

Was it helpful?

Solution

It works now, I think the problem was with the username. it needs the domain in the username. i.e. the problem was

user_name: 'username'

Whereas the correct way (at least for google apps) is

user_name : 'username@mydomain.com'

OTHER TIPS

this works for me:

config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address              => "smtp.gmail.com",
:port                 => 587,
:domain               => "gmail.com",
:user_name            => "you@gmail.com",
:password             => "password",
:authentication       => 'plain',
:enable_starttls_auto => true  }

Try setting the domain to gmail.com

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top