From d1ad182192afe16eecf78361aa2bc0c8de3b0663 2015-02-07 07:37:21 From: Jean-Philippe Lang Date: 2015-02-07 07:37:21 Subject: [PATCH] rdm-mailhandler.rb should catch EOFError (#18922). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@13961 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/extra/mail_handler/rdm-mailhandler.rb b/extra/mail_handler/rdm-mailhandler.rb index c55aed2..36d06cb 100644 --- a/extra/mail_handler/rdm-mailhandler.rb +++ b/extra/mail_handler/rdm-mailhandler.rb @@ -129,7 +129,7 @@ class RedmineMailHandler debug "Posting to #{uri}..." begin response = Net::HTTPS.post_form(URI.parse(uri), data, headers, :no_check_certificate => no_check_certificate) - rescue SystemCallError => e # connection refused, etc. + rescue SystemCallError, IOError => e # connection refused, etc. warn "An error occured while contacting your Redmine server: #{e.message}" return 75 # temporary failure end