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
This commit is contained in:
Jean-Philippe Lang
2015-02-07 07:37:21 +00:00
parent d347fd4d39
commit d1ad182192

View File

@@ -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