gitlab 邮件配置(smtp)

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 16:08   839   0
一: 修改全局配置文件

$ git config --GLOBAL user.name "gengchong"
$ git config --GLOBAL user.email "gengchong@ddcehua.com"


二: 配置gitlab的发送邮件的SMTP服务

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

config.action_mailer.delivery_method= :smtp

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

if Rails.env.production?
Gitlab::Application.config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
address: "smtp.exmail.qq.com",
port: 25,
user_name: "gengchong@ddcehua.com",
password: "email password",
domain: "smtp.qq.com",
authentication: :login,
enable_starttls_auto: false,
openssl_verify_mode: 'none' # See ActionMailer documentation for other possible options
}
end

这里,端口使用的是25,不是腾讯企业邮箱官方说的465,请注意.

三:重启gitlab
service gitlab restart

四:测试配置










来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/28624388/viewspace-1755425/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/28624388/viewspace-1755425/

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP