From b0b8978ff84ef25dfa8efa842a8643377bbbe266 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Tue, 12 Feb 2019 23:35:05 +0000 Subject: Fix: Mail handler does not ignore emails sent from emission email address if Setting.mail_from includes display name (#30785). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@17862 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/setting_test.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'test/unit/setting_test.rb') diff --git a/test/unit/setting_test.rb b/test/unit/setting_test.rb index 5eed249f1..710d9581e 100644 --- a/test/unit/setting_test.rb +++ b/test/unit/setting_test.rb @@ -112,6 +112,23 @@ class SettingTest < ActiveSupport::TestCase end end + def test_mail_from_address + mail_from_strings = [ + 'joe@example.com', + '', + 'Joe Bloggs ', + 'display_name@example.com ', + 'joe@example.com (Joe Bloggs)', + 'joe@example.com (display_name@example.com)' + ] + + mail_from_strings.each do |from_value| + with_settings :mail_from => from_value do + assert_equal 'joe@example.com', Setting.mail_from_address + end + end + end + def test_setting_serialied_as_binary_should_be_loaded_as_utf8_encoded_strings yaml = <<-YAML --- -- cgit v1.2.3