Skip to content
Snippets Groups Projects
Commit 66839c12 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang
Browse files

Replaces List-Id header with Precedence and Auto-Submitted headers (#2984, #2879).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2655 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent ca166b30
No related merge requests found
......@@ -267,7 +267,8 @@ class Mailer < ActionMailer::Base
headers 'X-Mailer' => 'Redmine',
'X-Redmine-Host' => Setting.host_name,
'X-Redmine-Site' => Setting.app_title,
'List-Id' => "<#{Setting.mail_from.to_s.gsub('@', '.')}>"
'Precedence' => 'bulk',
'Auto-Submitted' => 'auto-generated'
end
# Appends a Redmine header field (name is prepended with 'X-Redmine-')
......
......@@ -87,6 +87,16 @@ class MailerTest < Test::Unit::TestCase
# restore it
Redmine::Utils.relative_url_root = relative_url_root
end
def test_email_headers
ActionMailer::Base.deliveries.clear
issue = Issue.find(1)
Mailer.deliver_issue_add(issue)
mail = ActionMailer::Base.deliveries.last
assert_not_nil mail
assert_equal 'bulk', mail.header_string('Precedence')
assert_equal 'auto-generated', mail.header_string('Auto-Submitted')
end
def test_plain_text_mail
Setting.plain_text_mail = 1
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment