Actions
Maintenance #1958
closedxmera Omnia - Collection #1826: Maintenance tasks of several components
Maintenance #1739: Support Redmine 5.1.1
Check if mailer changes will have impact on plugins
Start date:
Due date:
% Done:
100%
Estimated time:
Compatible Redmine Version:
Pull Request Link:
Description
Affected plugins:
diff --git a/app/models/mailer.rb b/app/models/mailer.rb
index 399857b31..558c280ec 100644
--- a/app/models/mailer.rb
+++ b/app/models/mailer.rb
@@ -76,6 +76,7 @@ class Mailer < ActionMailer::Base
'Issue-Id' => issue.id,
'Issue-Author' => issue.author.login,
'Issue-Assignee' => assignee_for_header(issue)
+ redmine_headers 'Issue-Priority' => issue.priority.name if issue.priority
message_id issue
references issue
@author = issue.author
@@ -108,6 +109,7 @@ class Mailer < ActionMailer::Base
'Issue-Id' => issue.id,
'Issue-Author' => issue.author.login,
'Issue-Assignee' => assignee_for_header(issue)
+ redmine_headers 'Issue-Priority' => issue.priority.name if issue.priority
message_id journal
references issue
@author = journal.user
@@ -703,7 +705,7 @@ class Mailer < ActionMailer::Base
headers[:references] = @references_objects.collect {|o| "<#{self.class.references_for(o, @user)}>"}.join(' ')
end
- if block_given?
+ if block
super headers, &block
else
super headers do |format|
Updated by liaham about 1 year ago
- Status changed from New to Closed
- Assignee set to liaham
- % Done changed from 0 to 100
No impact on:
Actions