Created
April 7, 2015 15:19
-
-
Save josefglatz/393ff0a0fa60e86d829e to your computer and use it in GitHub Desktop.
Gitlab Gmail SMTP Configuration Google Apps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/gitlab/gitlab.rb | |
gitlab_rails['gitlab_email_from'] = "[email protected]" | |
gitlab_rails['smtp_enable'] = true | |
gitlab_rails['smtp_address'] = "smtp.gmail.com" | |
gitlab_rails['smtp_port'] = 587 | |
gitlab_rails['smtp_user_name'] = "[email protected]" | |
gitlab_rails['smtp_password'] = "NicePassword" | |
gitlab_rails['smtp_domain'] = "owndomain.at" | |
gitlab_rails['smtp_authentication'] = :plain | |
gitlab_rails['smtp_enable_starttls_auto'] = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I guess
now should be
PD: Thanks for your gist!