From 6461a77f295219c6cfb9fa918cedde1480111ebd Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 28 Dec 2013 16:27:49 +0100 Subject: Workaround for an otr lib bug (plaintext messages without warning) See https://github.com/afflux/pure-python-otr/issues/47 --- plugins/otr.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/plugins/otr.py b/plugins/otr.py index d668c0ae..bdffeac2 100644 --- a/plugins/otr.py +++ b/plugins/otr.py @@ -401,7 +401,17 @@ class Plugin(BasePlugin): # ignore non-otr messages # if we expected an OTR message, we would have # got an UnencryptedMesssage - log.error('coucou %s', ctx.getPolicy('REQUIRE_ENCRYPTION')) + # but do an additional check because of a bug with py3k + if ctx.state != STATE_PLAINTEXT or ctx.getPolicy('REQUIRE_ENCRYPTION'): + + tab.add_message('The following message from %s was not encrypted:\n%s' % (msg['from'], err.args[0].decode('utf-8')), + jid=msg['from'], nick_color=theming.get_theme().COLOR_REMOTE_USER, + typ=0) + del msg['body'] + del msg['html'] + hl(tab) + self.core.refresh_window() + return return except NotEncryptedError as err: tab.add_message('An encrypted message from %s was received but is ' @@ -424,6 +434,8 @@ class Plugin(BasePlugin): self.core.refresh_window() return except: + tab.add_message('An unspecified error occured') + log.error('Unspecified error in the OTR plugin', exc_info=True) return # remove xhtml -- cgit v1.2.3