码迷,mamicode.com
首页 > 其他好文 > 详细

gitlab邮件配置

时间:2015-02-03 17:29:42      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:gitlab邮件

git+gitlab安装好后邮件默认发出地址是gitlab@localhost ,此地址会被任何邮件服务商都拦截,且无法加入白名单。

技术分享

技术分享


配置gitlab用smtp发送邮件(网上参考大多都不靠谱),最终测试以下三步就可以了:

1. 修改全局配置文件git/.gitconfig文件,这里的email是gitlab发送邮件的Email地址

[user]

        name = GitLab

        email = gitlab@olymtech.com

2. 配置gitlab的发送邮件的SMTP服务

修改gitlab/config/environments/production.rb配置文件:

config.action_mailer.delivery_method= :smtp

更改smtp邮件配置文件gitlab/config/initializers/smtp_settings.rb

if Gitlab::Application.config.action_mailer.delivery_method == :smtp 
ActionMailer::Base.smtp_settings = { 
address: "smtp.exmail.qq.com", 
port: 25, 
user_name: "
gitlab@olymtech.com", 
password: "123456", 
domain: "mail.qq.com", 
authentication: ‘plain‘, 
enable_starttls_auto: false 

end

如果没用smtp没有开加密连接的话 enable_starttls_auto 的值应该配置为 false

3. 需要注意一个问题, 如果你的smtp服务器做了权限限制,只能以登陆账户的邮件帐号发邮件的话,还需要修改gitlab/config/gitlab.yml   

email_from: gitlab@olymtech.com

support_email: gitlab@olymtech.com


之后发送出来的邮件还是以gitlab@localhost邮件格式发出,最后 gitlab/config/environments/development.rb在此配置文件中发现这么一段:

 # For having correct urls in mails

  config.action_mailer.default_url_options = { host: ‘localhost‘, port: 3000 }

将localhost改成我的发件箱后缀olymtech.com 

再次重启gitlab服务,测试邮件OK。


本文出自 “E人空间” 博客,请务必保留此出处http://iceeggplant.blog.51cto.com/1446843/1611147

gitlab邮件配置

标签:gitlab邮件

原文地址:http://iceeggplant.blog.51cto.com/1446843/1611147

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!