1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-25 09:51:14 +00:00

Test that List-Id header field does not include display name and extra angle brackets (#14792).

Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@17873 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2019-02-16 22:45:34 +00:00
parent 21e503fc71
commit 675b0c641d

View File

@ -198,11 +198,14 @@ class MailerTest < ActiveSupport::TestCase
end
def test_email_headers
issue = Issue.find(1)
Mailer.deliver_issue_add(issue)
with_settings :mail_from => 'Redmine <redmine@example.net>' do
issue = Issue.find(1)
Mailer.deliver_issue_add(issue)
end
mail = last_email
assert_equal 'All', mail.header['X-Auto-Response-Suppress'].to_s
assert_equal 'auto-generated', mail.header['Auto-Submitted'].to_s
# List-Id should not include the display name "Redmine"
assert_equal '<redmine.example.net>', mail.header['List-Id'].to_s
end