Google apps Mail
Created by: ReidWeb
I'm trying to setup Gitlab to send confirmation email with my Google Apps email adress I'm using the following config as part of production.rb in /config/environments
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => '587',
:domain => "mydomain.com",
:user_name => "[email protected]",
:password => "password",
:authentication => 'plain',
:enable_starttls_auto => true }
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
It doesn't seem to be working, is there anything i need to set up on the google side or there any logs i can view to see what's going on?
I've got the email address set to match in gitlab.yml also