[root@WinJay ~] # vim /etc/gitlab/gitlab.rb
进入后将红框中的注释重新复制一份,取消掉注释,然后填入正确的邮箱信息。 配置完成后运行:[root@WinJay ~]# gitlab-ctl reconfigure
加载完成后输入:gitlab-rails console 进行命令行邮件发信测试
‘zhangwj@nerc.edu.cn’Notify.test_email(, ‘GitLab Email Test’, ‘This is a Test Email.Thank you!’).deliver_now
重新修改配置文件 加入下面的参数。每一条都不能填错,最重要的是最后一条。。。
之后重新加载配置文件 再次运行邮件测试可见可以正常发信了。 **================================**这是官方文档给出的示例,参考一下即可。。。。
User git_user_email 那条参数这里面也没写。
There are example configurations at the end of this page.
gitlab_rails[‘smtp_enable’] = true gitlab_rails[‘smtp_address’] = “smtp.server” gitlab_rails[‘smtp_port’] = 465 gitlab_rails[‘smtp_user_name’] = “smtp user” gitlab_rails[‘smtp_password’] = “smtp password”
gitlab_rails[‘smtp_domain’] = “example.com” gitlab_rails[‘smtp_authentication’] = “login” gitlab_rails[‘smtp_enable_starttls_auto’] = true gitlab_rails[‘smtp_openssl_verify_mode’] = ‘peer’
# If your SMTP server does not like the default ‘From: gitlab@localhost’ you # can change the ‘From’ with this setting.
gitlab_rails[‘gitlab_email_from‘] = ‘gitlab@example.com’ gitlab_rails[‘gitlab_email_reply_to‘] = ‘noreply@example.com’
评论区