Last active
September 9, 2016 19:48
-
-
Save petermanser/6117494 to your computer and use it in GitHub Desktop.
Gitlab 5.4 - Gmail configuration
This file contains hidden or 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
## Email settings | |
# Email address used in the "From" field in mails sent by GitLab | |
email_from: [email protected] |
This file contains hidden or 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
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 | |
} |
Restart the GitLab service - (ubuntu : # service gitlab resrtart )
@JanWen this assumes you're using Google Apps. That's why it says @yourdomain.com
. If you're not using Google Apps then @yourdomain.com
is just @gmail.com
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
after config,need to reastart which servcices?and the domain name is must?