You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a pidgin-otr client attemps to start an OTR session, this is received :
NICNKAME@SERVER has requested an Off-the-Record private conversation http://otr.cypherpunks.ca/. However, you do not have a plugin to support that.
Despite that, the session is correctly initiated.
This also happenned between pidgin-otr and the "old" irssi-otr. Which makes me think it may either be a pidgin-otr issue (bad formating ?) or an incompatibility with the way OTRv3 sends this string and the current pure-python-otr library
Whatever it is, I must investigate this further and fix this before the next release as it is confusing for the user.
The text was updated successfully, but these errors were encountered:
There is no OTR tag on this message, thus there is no reason for us to not display it to the user. Nothing indicates that an OTR-capable client should discard this message.
I don't see anything mentioning this in the protocol specification : http://www.cypherpunks.ca/otr/Protocol-v3-4.0.0.html
From there, it is implied the correct way of doing so is to include the to-hide message AFTER the otr tag in the SAME message.
If the client supports OTR, it will interpret the tag and ignore the rest, if not, the tag and the message are obviously displayed to the user as a regular message.
I'm not creating a workaround only to support pidgin's special way of doing things.
Won't fix. Waiting for Pidgin-OTR to adopt a more interoperable behavior
This is actually not true. Pidgin sends a single multi-line message:
<message type="chat" [...]>[...]<body>?OTRv23?
[user] has requested an Off-the-Record private conversation
<http://otr.cypherpunks.ca/>. However, you do not have a plugin to support that.
See http://otr.cypherpunks.ca/ for more information.</body><html [...]>
[...]</html></message>
Unfortunately, I have no idea how to properly deal with this. When bitlbee or minbif is used, there is no way to group those messages (apart from their arrival time). If jabber.py is used, one could think of several workarounds but I believe weechat-otr and jabber.py can't be used together currently anyway.
I could patch bitlbee to always return html-encoded messages and then use a plugin I have yet to write to remove the html in weechat. Thinking about it, I will have to write that plugin anyway, as pidgin will put html inside the encrypted message once any styling is applied to the message. However, maximum message length in IRC could still cause problems.
When a pidgin-otr client attemps to start an OTR session, this is received :
NICNKAME@SERVER has requested an Off-the-Record private conversation http://otr.cypherpunks.ca/. However, you do not have a plugin to support that.
Despite that, the session is correctly initiated.
This also happenned between pidgin-otr and the "old" irssi-otr. Which makes me think it may either be a pidgin-otr issue (bad formating ?) or an incompatibility with the way OTRv3 sends this string and the current pure-python-otr library
Whatever it is, I must investigate this further and fix this before the next release as it is confusing for the user.
The text was updated successfully, but these errors were encountered: