I have to restrict connections with another server.
I want, for example
people from my server CAN chat with and CAN't chat with
How I can do it?
To access the most up-to-date ejabberd documentation, please visit docs.ejabberd.im »
I have to restrict connections with another server.
I want, for example
people from my server CAN chat with and CAN't chat with
How I can do it?
Not possible in ejabberd 2.0.x. Maybe with mod_filter
I have to restrict connections with another server.
I want, for example
people from my server CAN chat with and CAN't chat with
How I can do it?
In ejabberd 2.0.x and newer the only you can do is restrict at server-level:
{s2s_default_policy, allow}. {{s2s_host, gmail.com}, allow}. {{s2s_host, jabber.ru}, deny}.Check the ejabberd Guide for description of those options.
To enforce restrictions at user-level, maybe allows you to do that.