diff options
author | mathieui <mathieui@mathieui.net> | 2014-02-13 00:48:19 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-02-13 00:48:19 +0100 |
commit | 7e3efccb537ae11e9550ddf14ea6ca4ba472804a (patch) | |
tree | 1d8dcd3a3ff9e4ff77fe31b305dba5a54fc4fedf /src/core.py | |
parent | f43f06214ef5bb16de616feb754fcdb56a208192 (diff) | |
download | poezio-7e3efccb537ae11e9550ddf14ea6ca4ba472804a.tar.gz poezio-7e3efccb537ae11e9550ddf14ea6ca4ba472804a.tar.bz2 poezio-7e3efccb537ae11e9550ddf14ea6ca4ba472804a.tar.xz poezio-7e3efccb537ae11e9550ddf14ea6ca4ba472804a.zip |
Fix #2407 (unencrypted connections)
Add a force_encryption option set to true by default.
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/core.py b/src/core.py index 38b4f974..0d9c88a1 100644 --- a/src/core.py +++ b/src/core.py @@ -236,7 +236,8 @@ class Core(object): # Add handlers self.xmpp.add_event_handler('connected', self.on_connected) self.xmpp.add_event_handler('disconnected', self.on_disconnected) - self.xmpp.add_event_handler('no_auth', self.on_failed_auth) + self.xmpp.add_event_handler('failed_auth', self.on_failed_auth) + self.xmpp.add_event_handler('no_auth', self.on_no_auth) self.xmpp.add_event_handler("session_start", self.on_session_start) self.xmpp.add_event_handler("session_start", self.on_session_start_features) self.xmpp.add_event_handler("groupchat_presence", self.on_groupchat_presence) @@ -3553,7 +3554,13 @@ class Core(object): """ Authentication failed """ - self.information(_("Authentication failed.")) + self.information(_("Authentication failed (bad credentials?).")) + + def on_no_auth(self, event): + """ + Authentication failed (no mech) + """ + self.information(_("Authentication failed, no login method available.")) def on_connected(self, event): """ |