diff --git a/src/common/connection.py b/src/common/connection.py
index d09b95d1b58d92fa7f33616917ebf82798019ab4..6eb2269e760129b23fb6c7b92b415f941d1dbc7f 100644
--- a/src/common/connection.py
+++ b/src/common/connection.py
@@ -178,6 +178,7 @@ class Connection(ConnectionHandlers):
 		# server {'icq': ['icq.server.com', 'icq2.server.com'], }
 		self.vcard_supported = True
 		self.private_storage_supported = True
+		self.streamError = ''
 	# END __init__
 
 	def put_event(self, ev):
@@ -515,7 +516,7 @@ class Connection(ConnectionHandlers):
 		self._connect_to_next_host()
 
 
-	def _connect_to_next_host(self, retry = False):
+	def _connect_to_next_host(self, retry=False):
 		log.debug('Connection to next host')
 		if len(self._hosts):
 			# No config option exist when creating a new account
@@ -618,15 +619,18 @@ class Connection(ConnectionHandlers):
 				msg = '%s over proxy %s:%s' % (msg, self._proxy['host'], self._proxy['port'])
 			log.info(msg)
 
-	def _connect_failure(self, con_type = None):
+	def _connect_failure(self, con_type=None):
 		if not con_type:
 			# we are not retrying, and not conecting
 			if not self.retrycount and self.connected != 0:
 				self.disconnect(on_purpose = True)
 				self.dispatch('STATUS', 'offline')
+				sectxt = ''
+				if self.streamError:
+					sectxt = _('Server replied: %s\n') % self.streamError
 				self.dispatch('CONNECTION_LOST',
 					(_('Could not connect to "%s"') % self._hostname,
-					_('Check your connection or try again later.')))
+					_('%sCheck your connection or try again later.') % sectxt))
 
 	def on_proxy_failure(self, reason):
 		log.error('Connection to proxy failed: %s' % reason)
diff --git a/src/common/xmpp/client_nb.py b/src/common/xmpp/client_nb.py
index 1b4dd81980a5b000798163a754a78b0998a0d0c0..554be2199dc15be2dcb86f02b41554062b6ee55b 100644
--- a/src/common/xmpp/client_nb.py
+++ b/src/common/xmpp/client_nb.py
@@ -122,6 +122,7 @@ class NonBlockingClient:
 				# proper connection is not established yet and it's not a proxy
 				# issue
 				log.debug('calling on_connect_failure cb')
+				self._caller.streamError = message
 				self.on_connect_failure()
 			else:
 				# with open connection, we are calling the disconnect handlers
diff --git a/src/common/xmpp/dispatcher_nb.py b/src/common/xmpp/dispatcher_nb.py
index f5335d0e572b466dc7ad1ac31292123e546da31f..6663cf9c635d97065cadf2436868627534868cfd 100644
--- a/src/common/xmpp/dispatcher_nb.py
+++ b/src/common/xmpp/dispatcher_nb.py
@@ -193,7 +193,7 @@ class XMPPDispatcher(PlugIn):
 			self.Stream.Parse(data)
 			# end stream:stream tag received
 			if self.Stream and self.Stream.has_received_endtag():
-				self._owner.disconnect()
+				self._owner.disconnect(self.Stream.streamError)
 				return 0
 		except ExpatError:
 			log.error('Invalid XML received from server. Forcing disconnect.')
diff --git a/src/common/xmpp/simplexml.py b/src/common/xmpp/simplexml.py
index 237f1cec2d44ae7157847a87b146aa5a1aafb6a7..50885bc9bced9b00f0fa56916b97198893766eb6 100644
--- a/src/common/xmpp/simplexml.py
+++ b/src/common/xmpp/simplexml.py
@@ -355,6 +355,7 @@ class NodeBuilder:
 		self.last_is_data = 1
 		self._ptr=None
 		self.data_buffer = None
+		self.streamError = ''
 		if data:
 			self._parser.Parse(data,1)
 
@@ -411,6 +412,8 @@ class NodeBuilder:
 		log.info("DEPTH -> %i , tag -> %s" % (self.__depth, tag))
 		self.check_data_buffer()
 		if self.__depth == self._dispatch_depth:
+			if self._mini_dom.getName() == 'error':
+				self.streamError = self._mini_dom.getChildren()[0].getName()
 			self.dispatch(self._mini_dom)
 		elif self.__depth > self._dispatch_depth:
 			self._ptr = self._ptr.parent