Which ejabberd module handles directed presence events?

I am modifying the ejabberd server to send a custom list to the user, which I was able to do by writing my own version of mod_roster. Now I want to add presence on top of this list by processing directed presence messages from the client, as defined in rfc3921 .

Does anyone know which modules currently provide this function, so I can use them as a reference?

+3
source share
1 answer

There is no special module for this, but ejabberd_cs2.erl has most of the code that handles this functionality.

0
source

All Articles