jdev - 2022-04-25


  1. Zash

    Anyone aware of any instance using that expired intermediate LE chain?

  2. MattJ

    Since it's the default chain, I'd imagine most

  3. MattJ

    Including all Snikket instances

  4. Zash

    Hm. I'm after something that will fail validation.

  5. pep.

    Ask movim.eu to rollback changes :P

  6. Anton L. Šijanec

    Hi! I have a XEP-0045 (MUC) related question. Can I under the same stream:stream subscribe to many groupchat presences that are the same MUC room, but with different nicknames?

  7. Anton L. Šijanec

    If so, how do I send messages as a specific nickname? http://xmpp.org/extensions/xep-0045.html#message does not set the nickname in the `to` attribute. Can I set it?

  8. Zash

    I'm pretty sure the answer to the first question is "no"

  9. Anton L. Šijanec

    Oh, makes sense, thanks. So I'd have to create many c2s connections to the server to do that? I'm implementing a simple IRC-XMPP bridge with libstrophe. Does anyone know how is this done in other bridges (apart from those that just prefix the message with the nick)?

  10. Zash

    Unless your server supports binding multiple JIDs to the same stream, which I think we did a way with long ago.

  11. pep.

    Or if the server acts as multiple entities for your when talking to the MUC

  12. pep.

    But that may not be implemented anywhere

  13. Zash

    Use a component connection (XEP-0114), then you can use anything@component.example/anything

  14. Anton L. Šijanec

    This looks promising. I'll look into it.

  15. MattJ

    Anton L. Šijanec, you are aware of biboumi?

  16. pep.

    ha true, there are implementations here and there :)

  17. MattJ

    ( https://biboumi.louiz.org/ )

  18. Anton L. Šijanec

    That'll probably serve my needs, thanks! Though I assume this is more like a irc client than a bridge - bridging the other way around (access an existing mux) is not possible.

  19. MattJ

    You can combine it with this: https://git.sr.ht/~singpolyma/cheogram-muc-bridge

  20. MattJ

    That will allow bridging an existing MUC with an existing IRC channel

  21. Anton L. Šijanec

    Nice!