From 675b0c641df7fb47b6f26eb44877e511e8e97718 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Sat, 16 Feb 2019 22:45:34 +0000 Subject: [PATCH] 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 --- test/unit/mailer_test.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/unit/mailer_test.rb b/test/unit/mailer_test.rb index f22f532f4..7af853b67 100644 --- a/test/unit/mailer_test.rb +++ b/test/unit/mailer_test.rb @@ -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 ' 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 '', mail.header['List-Id'].to_s end -- 2.39.5