Actions
Patch #13359
openBetter List-Id to help aid Gmail filtering
Status:
New
Priority:
Normal
Assignee:
-
Category:
Email notifications
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Description
This gives the possibility to filer mail-updates from different project into different folders.
--- ./redmine-2.1.6/app/models/mailer.rb 2013-01-09 17:34:07.000000000 +0100 +++ /opt/redmine-2.1.6/app/models/mailer.rb 2013-03-05 15:33:38.438398984 +0100 @@ -386,7 +386,7 @@ 'X-Auto-Response-Suppress' => 'OOF', 'Auto-Submitted' => 'auto-generated', 'From' => Setting.mail_from, - 'List-Id' => "<#{Setting.mail_from.to_s.gsub('@', '.')}>" + 'List-Id' => "<#{@issue.project.identifier}.#{Setting.host_name}>" # Removes the author from the recipients and cc # if he doesn't want to receive notifications about what he does
The resulting List-Id could look like this:
List-Id: <cantemo-ab.vvv.cantemo.com>
Related issues
Updated by Mattias Amnefelt over 10 years ago
Here is an updated patch which doesn't croak on mails which are sent for non-issue updates (user info notifications for example)
--- redmine-2.1.6/app/models/mailer.rb.orig 2013-01-09 17:34:07.000000000 +0100 +++ redmine-2.1.6/app/models/mailer.rb 2013-04-16 11:33:00.057745141 +0200 @@ -380,13 +380,19 @@ end def mail(headers={}) + if @issue + listid = "<#{@issue.project.identifier}.#{Setting.host_name}>" + else + listid = "#{Setting.host_name}>" + end + headers.merge! 'X-Mailer' => 'Redmine', 'X-Redmine-Host' => Setting.host_name, 'X-Redmine-Site' => Setting.app_title, 'X-Auto-Response-Suppress' => 'OOF', 'Auto-Submitted' => 'auto-generated', 'From' => Setting.mail_from, - 'List-Id' => "<#{Setting.mail_from.to_s.gsub('@', '.')}>" + 'List-Id' => listid # Removes the author from the recipients and cc # if he doesn't want to receive notifications about what he does
Updated by Toshi MARUYAMA about 10 years ago
- Related to Defect #14792: Don't add a display name and extra angle brackets in List-Id header field added
Actions