gitlab 配置邮箱服务
查看已经启动的容器gitlab
docker ps -a
登录到容器gitlab中
docker exec -it gitlab bash
修改gitlab配置文件
vim /etc/gitlab/gitlab.rb
按/后输入smtp_enable,找到下面这一串文本,进行修改 ,去掉注释
gitlab_rails['smtp_enable'] = true gitlab_rails['smtp_address'] = "smtp.qq.com" gitlab_rails['smtp_port'] = 465 gitlab_rails['smtp_user_name'] = "qq邮箱" gitlab_rails['smtp_password'] = "开通smtp时返回的字符" gitlab_rails['smtp_domain'] = "qq.com" gitlab_rails['smtp_authentication'] = "login" gitlab_rails['smtp_enable_starttls_auto'] = true gitlab_rails['smtp_tls'] = true user['git_user_email'] = "qq邮箱" gitlab_rails['gitlab_email_from'] = 'qq邮箱'
按esc退出到命令行模式 :wq 保存并退出
gitlab-ctl reconfigure
4 测试邮件服务是否正常
gitlab-rails console Notify.test_email(' 接收方邮件地址 ',' 邮件标题 ',' 邮件内容 ').deliver_now
按回车,测试发送。
中间遇到一个奇葩问题:
gitlab_rails['smtp_tls'] = true这一项配置是导致该报错误的元凶
解决方法:将其设置为false
从新发送邮件
vi /etc/gitlab/gitlab.rb
gitlab-ctl reconfigure
发送成功!
以下是各个邮箱smtp 端口与地址!
网易163邮箱(mail.163.com):
POP3服务器地址:pop.163.com(端口:110)
SMTP服务器地址:smtp.163.com(端口:25)
网易126邮箱(mail.126.com):
POP3服务器地址:pop.126.com(端口:110)
SMTP服务器地址:smtp.126.com(端口:25)
移动139邮箱(mail.10086.cn):
POP3服务器地址:POP.139.com(端口:110)
SMTP服务器地址:SMTP.139.com(端口:25)
腾讯QQ邮箱(mail.qq.com):
POP3服务器地址:pop.qq.com(端口:110)
SMTP服务器地址:smtp.qq.com (端口:25)
腾讯QQ企业邮箱(exmail.qq.com) :
POP3服务器地址:pop.exmail.qq.com (SSL启用 端口:995)
SMTP服务器地址:smtp.exmail.qq.com(SSL启用 端口:587/465)
谷歌Gmail邮箱(mail.google.com):
POP3服务器地址:pop.gmail.com(SSL启用 端口:995)
SMTP服务器地址:smtp.gmail.com(SSL启用 端口:587)
腾讯Foxmail邮箱(mail.qq.com):
POP3服务器地址:POP.foxmail.com(端口:110)
SMTP服务器地址:SMTP.foxmail.com(端口:25)
新浪sina邮箱(mail.sina.com.cn):
POP3服务器地址:pop3.sina.com.cn(端口:110)
SMTP服务器地址:smtp.sina.com.cn(端口:25)
新浪sinaVIP邮箱(mail.sina.com.cn):
POP3服务器:pop3.vip.sina.com (端口:110)
SMTP服务器:smtp.vip.sina.com (端口:25)
搜狐sohu邮箱(mail.sohu.com):
POP3服务器地址:pop3.sohu.com(端口:110)
SMTP服务器地址:smtp.sohu.com(端口:25)
雅虎yahoo邮箱(login.yahoo.com):
POP3服务器地址:pop.mail.yahoo.com
SMTP服务器地址:smtp.mail.yahoo.com
雅虎yahoo.com.cn邮箱(login.yahoo.com):
POP3服务器地址:pop.mail.yahoo.com.cn(端口:995)
SMTP服务器地址:smtp.mail.yahoo.com.cn(端口:587 )
微软HotMail邮箱(mail.live.com) :
POP3服务器地址:pop3.live.com (端口:995)
SMTP服务器地址:smtp.live.com (端口:587)