Skip to content

Instantly share code, notes, and snippets.

@ii0
Forked from xavierjurado/gist:3138813
Created December 7, 2015 02:29
Show Gist options
  • Save ii0/afeb7e8dadd40066ec1b to your computer and use it in GitHub Desktop.
Save ii0/afeb7e8dadd40066ec1b to your computer and use it in GitHub Desktop.
Gitlab Gmail configuration

Gitlab Gmail configuration

In Gitlab 2.6 you must edit the following files in order to send messages through a Gmail account (also applicable to Google Apps accounts).

config/environments/production.rb

config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true

config.action_mailer.smtp_settings = {
  :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => 'gmail.com',
  :user_name            => '[email protected]',
  :password             => 'password',
  :authentication       =>  :plain,
  :enable_starttls_auto => true
}
…

config/gitlab.yml

# Gitlab application config file
# Email used for notification
# about new issues, comments
email:
 from: [email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment