Hi does anyone have an idea on configuring eJabberd server to allow User Registration for admin accounts only?
This is done through inband registration XEP-0077. Using Smack API as XMPP interface for java.
I tried changing ejabberd.cfg file's
Access Control Lists: {acl, admin, {user, "admin", "myserver.somewhere.here"}.
Access Rule: {access, register, [{allow, admin}, {deny, all}]}.
mod_register: {mod_register, [{access, register}]}.
But it doesn't work.
Thank you.