From 36b255e57bae0dbfbb0e1767713bdd713c48d622 Mon Sep 17 00:00:00 2001 From: Aleks Bunin Date: Sat, 7 Feb 2015 12:35:50 -0500 Subject: Addex X-GitLab-Project header to GitLab emails. Fixes #8748. --- app/mailers/notify.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/mailers/notify.rb') diff --git a/app/mailers/notify.rb b/app/mailers/notify.rb index 5ae07d771fa..3b7152cb771 100644 --- a/app/mailers/notify.rb +++ b/app/mailers/notify.rb @@ -111,6 +111,7 @@ class Notify < ActionMailer::Base # See: mail_answer_thread def mail_new_thread(model, headers = {}, &block) headers['Message-ID'] = message_id(model) + headers['X-GitLab-Project'] = "#{@project.name} | " if @project mail(headers, &block) end @@ -125,6 +126,7 @@ class Notify < ActionMailer::Base def mail_answer_thread(model, headers = {}, &block) headers['In-Reply-To'] = message_id(model) headers['References'] = message_id(model) + headers['X-GitLab-Project'] = "#{@project.name} | " if @project if (headers[:subject]) headers[:subject].prepend('Re: ') -- cgit v1.2.3