From 09eef4e75c022cb4b196b6612e65a74bd8f156ed Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 11 Apr 2015 07:15:38 +0000 Subject: Mail handler should not ignore emails with x-auto-response-suppress header (#19558). Patch by Sebastian Paluch. git-svn-id: http://svn.redmine.org/redmine/trunk@14159 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/mail_handler_test.rb | 1 - test/unit/mailer_test.rb | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'test') diff --git a/test/unit/mail_handler_test.rb b/test/unit/mail_handler_test.rb index f70128dd2..2ae3cb5c1 100644 --- a/test/unit/mail_handler_test.rb +++ b/test/unit/mail_handler_test.rb @@ -629,7 +629,6 @@ class MailHandlerTest < ActiveSupport::TestCase def test_should_ignore_auto_replied_emails MailHandler.any_instance.expects(:dispatch).never [ - "X-Auto-Response-Suppress: OOF", "Auto-Submitted: auto-replied", "Auto-Submitted: Auto-Replied", "Auto-Submitted: auto-generated", diff --git a/test/unit/mailer_test.rb b/test/unit/mailer_test.rb index 52b6a62ee..0b985c171 100644 --- a/test/unit/mailer_test.rb +++ b/test/unit/mailer_test.rb @@ -197,7 +197,7 @@ class MailerTest < ActiveSupport::TestCase Mailer.deliver_issue_add(issue) mail = last_email assert_not_nil mail - assert_equal 'OOF', mail.header['X-Auto-Response-Suppress'].to_s + assert_equal 'All', mail.header['X-Auto-Response-Suppress'].to_s assert_equal 'auto-generated', mail.header['Auto-Submitted'].to_s assert_equal '', mail.header['List-Id'].to_s end -- cgit v1.2.3