jdev - 2022-08-23


  1. cmb

    I want to make a command-line softphone that uses Jingle for session establishment. Is there any kind of feature bit that it should announce, so that the XMPP server doesn't try to route text messages to it?

  2. MattJ

    cmb, if you send initial presence, add <priority>-1</priority>

  3. MattJ

    If you don't send initial presence, you won't receive messages anyway

  4. MattJ

    Whether you need to send presence depends on what features you need. If the other party already knows your full JID, there's usually no need

  5. cmb

    MattJ: Thank you.