博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gitlab邮箱验证 邮箱提醒设置
阅读量:6336 次
发布时间:2019-06-22

本文共 1253 字,大约阅读时间需要 4 分钟。

Gitlab邮件提醒方便跟踪项目进度,在这里介绍两种方式,一种是用系统的sendmail发送邮件,另一种是GMAIL的stmp来发送邮件
 
第一种 用系统的sendmail发送邮件
 
cd /home/gitlab/gitlab/
vi config/environments/production.rb
将这行 # config.action_mailer.delivery_method = :sendmail
改为    config.action_mailer.delivery_method = :sendmail
保存config/environments/production.rb
 
编辑config/gitlab.yml
vi config/gitlab.yml
对应修改一下配置
web:
  host: gitlab123.com
  port: 80
  https: false
 
email:
   from: notify@gitlab123.com
   protocol: http
   host: gitlab123.com
 
git_host:
   host: gitlab123.com
 
编辑/etc/hosts
加入你的ip对应gitlab123.com
10.0.0.71    gitlab123.com
 
第二种 GMAIL的stmp来发送邮件
cd /home/gitlab/gitlab/
vi config/environments/production.rb
 
在# config.action_mailer.delivery_method = :sendmail下加入
 
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            => 'account@gmail.com',
  :password             => 'password',
  :authentication       =>  :plain,
  :enable_starttls_auto => true
}
 
#配置好你的邮箱和密码
 
编辑config/gitlab.yml
vi config/gitlab.yml
对应修改一下配置
email:
   from: account@gmail.com
   protocol: http
posted on
2016-06-24 15:17 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/5614272.html

你可能感兴趣的文章
vue-cli 搭建webpack 项目流程
查看>>
活学活用! 用Local Storage实现多人聊天室
查看>>
HashMap深度分析
查看>>
解决问题The Tomcat connector configured to listen on port 8080 failed to start
查看>>
上海智慧城市园区系统集成开发,智慧城市从一到三的变化
查看>>
React组件的默认props
查看>>
ES6标准入门之---let与const
查看>>
ScrollView的contentSize、contentInset、contentOffset
查看>>
谈谈url、href、src
查看>>
vue源码阅读之数据渲染过程
查看>>
vue.js中created方法作用
查看>>
以不实扫描病毒结果来诱骗客遭到检举及调查
查看>>
开源大数据周刊-第20期
查看>>
68期:2015“双11”背后的关键技术专题
查看>>
MYSQL GET_LOCK锁
查看>>
翻译|Thinking Statefully
查看>>
用go实现向链表----数据结构与算法之旅1
查看>>
Linux 常见问题汇总
查看>>
Android崩溃优化(崩溃分类、原理分析以及解决)
查看>>
通过 RunScript 给 iOS 项目自增版本号(Versioin 和 Build)
查看>>