Custom Query (1098 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 1098)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#1266 fixed Remaining rough edges in the "chat list" feature dx
Description
  • Implement it for some non-purple builtin protocols
  • Implement it for bitlbee-facebook
  • SIPE support improved, but requires running "chat list" before actually joining channels, which breaks autojoin. Figure out if other protocols have an equivalent issue, or skim the code. I think there was someone in #bitlbee willing to help here.
  • Skypeweb joins to a different channel, not the specified one.
  • Purple's jabber opens an input query instead of using the server parameter, add a hack for that.
  • Trying to join jabber groupchats adds them without the server portion of the address
#1265 fixed hipchat: add oauth support sean@…
Description

It doesn't seem (unless I'm missing it) that the hipchat protocol implements oauth:

	if (strcmp(acc->prpl->name, "hipchat") == 0) {
		set_setstr(&acc->set, "server", "chat.hipchat.com");
	} else {
		set_add(&acc->set, "oauth", "false", set_eval_oauth, acc);

		/* this reuses set_eval_oauth, which clears the password */
		set_add(&acc->set, "anonymous", "false", set_eval_oauth, acc);
	}

It appears that the if statement checks for hipchat, then skips setting the oauth. I'm willing to help implement / test this with some guidance :-)

#1263 fixed Duplicate messages in jabber conference group chats. benc
Description

I consistently get duplicate messages when I comment in groupchat using the jabber/xmpp protocol to connect to a slack.com group. It appears that both the sent and received messages are printed.

The xml_console debug looks like this:

09:38 <_xmlconsole> TX: <message type="groupchat" to="testroom@conference.company.xmpp.slack.com"  
                    id="BeeCYIcjJguxIISSBeBn"><body>test</body></message> 
09:38 <_xmlconsole> RX: <message xmlns="jabber:client" from="testroom@conference.company.xmpp.slack.com/userx"  
                    to="userx@company.xmpp.slack.com/BitlBee" type="groupchat"  
                    ts="1471995489.000006"><body>test</body></message> 

This bug may be related to one previously fixed in 2008:

commit 63075d7345355dde6e490ad00a886a1b165dbe17
Author: Wilmer van der Gaast <wilmer@gaast.net>
Date:   Sun Feb 3 23:33:18 2008 +0000

    Messages from the user are also included in backlogs when joining a Jabber
    chatroom. Until now they were ignored, which might make backlogs a little
    bit confusing.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Note: See TracQuery for help on using queries.