jdev - 2022-09-07


  1. pep_

    moparisthebest: https://thehackernews.com/2013/12/fake-google-ssl-certificates-made-in.html

  2. pep.

    Is it possible to un-moderate a message?

  3. pep.

    "oops I slipped, I wanted to remove the next one"

  4. Zash

    Nope! Gone forever

  5. pep.

    :/

  6. pep.

    <oops-i-did-it-again xmlns="urn:xmpp:moderate" />

  7. kenter

    Hi, is it possible to have some other entity keeping MAM archive for a select number of conversations? (e.g for conversations with users from a certain domain) I'm kind of thinking about a similar mechanism to including groupchat results in a query (where the MUC servers are then queried and the results are included in the response), just for some particular JIDs in 1-on-1 chats.

  8. MattJ

    What's the use-case?

  9. kenter

    Mainly legacy service bridging? Since the history is already stored somewhere else it would be nice to utilise it and translate into MAM responses rather than store a duplicate.

  10. e-snail

    If anyone here is familiar with errbot's XMPP backend, I could use some help understanding why message responses are being buffered until another message (or presence stanza, chat marker, etc) is received

  11. e-snail

    logs show the backend's `send_message` method is called right away, but something else has to happen before it actually transmits the reply

  12. e-snail

    if nothing else happens to trigger the response, it ultimately comes when the keepalive fires

  13. e-snail

    this always happens with the specific plugin I'm trying to use, I think because it makes a web request and the response from the plugin to the backend is a bit delayed. However, when log level is set to INFO it also happens with built in plugins such as !echo. Setting log level to DEBUG makes the built in plugins respond immediately 😕