Merge pull request #81 from thekix/master

Handle connection errors
This commit is contained in:
Rodolfo García Peñas (kix) 2021-08-07 21:00:12 +02:00 committed by GitHub
commit 896ac98984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 5 deletions

View File

@ -89,16 +89,15 @@ class UsefulIMAPMixIn:
return self._open_socket_for_af(self.af)
def _open_socket_for_af(self, af):
msg = (-1, 'could not open socket')
for res in socket.getaddrinfo(self.host, self.port, af, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
try:
# use socket of our own, possiblly socksified socket.
# use socket of our own, possibly SOCKS socket.
s = self.socket(af, socktype, proto)
except socket.error as msg:
except socket.error:
continue
try:
for i in (0, 1):
for _ in (0, 1):
try:
s.connect(sa)
break
@ -106,12 +105,14 @@ class UsefulIMAPMixIn:
if len(msg.args) < 2 or msg.args[0] != errno.EINTR:
raise
else:
msg = (-1, 'could not open socket')
raise socket.error(msg)
except socket.error as msg:
except socket.error:
s.close()
continue
break
else:
msg = (-1, 'could not open socket')
raise socket.error(msg)
return s

View File

@ -677,6 +677,13 @@ class IMAPServer:
"for repository '%s'. Remote does not answer." % (self.hostname, self.repos),
OfflineImapError.ERROR.REPO,
exc_info()[2])
elif e.args and \
e.args[0][:35] == 'IMAP4 protocol error: socket error:':
raise OfflineImapError(
"Could not connect to remote server '{}' "
"for repository '{}'. Connection Refused.".format(
self.hostname, self.repos),
OfflineImapError.ERROR.CRITICAL)
else:
# re-raise all other errors
raise