gitlab keep sending same email forever
Created by: i-chess
Hello I configured the "Email on push" service with email list of [email protected] ; [email protected] and then after a commit (call it commit A) was made, for some reason from now on this commit email are sent again and again forever I "fixed" the list to be seperated by colon : [email protected] ,[email protected] and the problem is gone for the next commits. so I keep getting the commit A emails on and on forever. I'm using sendmail configuration as follows :
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "localhost"
gitlab_rails['smtp_port'] = 8025
# gitlab_rails['smtp_user_name'] = "gitlab"
# gitlab_rails['smtp_password'] = "gitlab"
gitlab_rails['smtp_domain'] = "ichess.co.il"
gitlab_rails['smtp_authentication'] = false
gitlab_rails['smtp_enable_starttls_auto'] = false
gitlab_rails['smtp_tls'] = false
# gitlab_rails['smtp_openssl_verify_mode'] = 'none' # Can be: 'none', 'peer', 'client_once', 'fail_if_no_peer_cert', see http://api.rubyonrails.org/classes/ActionMailer/Base.html
# gitlab_rails['smtp_ca_path'] = "/etc/ssl/certs"
# gitlab_rails['smtp_ca_file'] = "/etc/ssl/certs/ca-certificates.crt"
gitlab_rails['gitlab_email_from'] = '[email protected]'
gitlab_rails['gitlab_email_reply_to'] = '[email protected]'
If you can also please instruct me how to flush outgoing email queue...
Thanks Ran