Project

General

Profile

Actions

Patch #13359

open

Better List-Id to help aid Gmail filtering

Added by Jimmy Engelbrecht about 11 years ago. Updated almost 11 years ago.

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

Related to Redmine - Feature #10888: Bring back List-Id to help aid Gmail filteringClosedJean-Philippe Lang

Actions
Related to Redmine - Defect #14792: Don't add a display name and extra angle brackets in List-Id header fieldClosedGo MAEDA

Actions
Actions #1

Updated by Jimmy Engelbrecht about 11 years ago

Improvement to #10888

Actions #2

Updated by Mattias Amnefelt almost 11 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
Actions #3

Updated by Etienne Massip almost 11 years ago

  • Category set to Email notifications
Actions #4

Updated by Toshi MARUYAMA over 10 years ago

  • Related to Defect #14792: Don't add a display name and extra angle brackets in List-Id header field added
Actions

Also available in: Atom PDF