]> source.dussan.org Git - redmine.git/commitdiff
Test that List-Id header field does not include display name and extra angle brackets...
authorGo MAEDA <maeda@farend.jp>
Sat, 16 Feb 2019 22:45:34 +0000 (22:45 +0000)
committerGo MAEDA <maeda@farend.jp>
Sat, 16 Feb 2019 22:45:34 +0000 (22:45 +0000)
Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@17873 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/mailer_test.rb

index f22f532f4fdc43e950b5b85202bc122537ba63a0..7af853b67b66de02acca543d1605f82d636de8ac 100644 (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