Project

General

Profile

Feature #23524

Updated by Toshi MARUYAMA over 7 years ago

As discussed in this "thread":http://www.redmine.org/boards/2/topics/37282?r=50703 it would be quite useful if one could configure the contents of the info header of the notification mails that redmine sends out. 

 @ /app/models/mailer.rb 

 <pre><code class="ruby"> 
 redmine_headers 'Project' => issue.project.identifier, 
                  'Issue-Id' => issue.id, 
                  'Issue-Author' => issue.author.login 
 redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to 
 </code></pre> @ 

 Looking at this file, adding the option to add custom fields seems not that hard to implement, while adding the option to change/remove the default headers seems to need a more complex rewrite of the implemented functionality. Still implementing the custom additional fields option would be quite nice.

Back