Index: app/models/mail_handler.rb =================================================================== --- app/models/mail_handler.rb (revision 14155) +++ app/models/mail_handler.rb (working copy) @@ -73,7 +73,6 @@ cattr_accessor :ignored_emails_headers @@ignored_emails_headers = { - 'X-Auto-Response-Suppress' => /(oof|all)/, 'Auto-Submitted' => /\Aauto-(replied|generated)/, 'X-Autoreply' => 'yes' } Index: app/models/mailer.rb =================================================================== --- app/models/mailer.rb (revision 14155) +++ app/models/mailer.rb (working copy) @@ -389,7 +389,7 @@ headers.reverse_merge! 'X-Mailer' => 'Redmine', 'X-Redmine-Host' => Setting.host_name, 'X-Redmine-Site' => Setting.app_title, - 'X-Auto-Response-Suppress' => 'OOF', + 'X-Auto-Response-Suppress' => 'All', 'Auto-Submitted' => 'auto-generated', 'From' => Setting.mail_from, 'List-Id' => "<#{Setting.mail_from.to_s.gsub('@', '.')}>" Index: test/unit/mail_handler_test.rb =================================================================== --- test/unit/mail_handler_test.rb (revision 14155) +++ test/unit/mail_handler_test.rb (working copy) @@ -629,7 +629,6 @@ 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", Index: test/unit/mailer_test.rb =================================================================== --- test/unit/mailer_test.rb (revision 14155) +++ test/unit/mailer_test.rb (working copy) @@ -197,7 +197,7 @@ 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