简体   繁体   中英

GitLab email notification not working

I just set up gitlab on my dedicated server, As Admin I created a new user, He should normally receive an email with his password, But He doesn't.

What I want to know is how to configure email notifications (with SMTP).

PS: I'm not familiar with Ruby environment at all.

Thank you.

Update : it works now, I just forgot to install postfix when setting up gitlab

Update 2 : Finally I've choose to use an SMTP account to send email notifications:

Personally I've an Amazone account (You Can use Gmail) :

1) In /home/git/gitlab/config/envirenoments/production.rb comment this line :

#config.action_mailer.delivery_method = :sendmail

2) Add this (with correct credentials) just before end tag :

config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
     :address => 'gmail.com', // Or an other SMTP provider 
     :port => 467, // Port depends on your provider
     :domain => 'gitlab.yourserver.com', // Your Gitlab main url
     :authentication => :plain,
     :user_name => 'your gmail id',
     :password => 'yourPassword',
     :enable_starttls_auto => true
 }

Thank you, I hope it gonna help you.

Finally I've chosen to use an SMTP account to send email notifications:

Personally I've an Amazone account (You Can use Gmail) :

1) In /home/git/gitlab/config/envirenoments/production.rb comment this line :

#config.action_mailer.delivery_method = :sendmail

2) Add this (with correct credentials) just before end tag :

config.action_mailer.delivery_method = :smtp

config.action_mailer.smtp_settings = {
     :address => 'gmail.com', # Or an other SMTP provider 
     :port => 467, # Port depends on your provider
     :domain => 'gitlab.yourserver.com', # Your Gitlab main url
     :authentication => :plain,
     :user_name => 'your gmail id',
     :password => 'yourPassword',
     :enable_starttls_auto => true  }

Thank you, I hope it gonna help you.

请按照安装指南进行操作,其中包含设置电子邮件的说明。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM