Can I set an admin to a virtual host and let him control only the webadmin interface of hist virtual host?
Can I configure what screens and what actions a specific user can access on the webadmin?
Thanks
To access the most up-to-date ejabberd documentation, please visit docs.ejabberd.im »
Can I set an admin to a virtual host and let him control only the webadmin interface of hist virtual host?
Can I configure what screens and what actions a specific user can access on the webadmin?
Thanks
Yes and no
Can I set an admin to a virtual host and let him control only the webadmin interface of hist virtual host?
Yes, check the ejabberd.cfg.example in ejabberd 2.0.1 and newer:
This defines an administrator for all the ejabberd node:
%% %% The 'admin' ACL grants administrative privileges to Jabber accounts. %% You can put as many accounts as you want. %% %%{acl, admin, {user, "aleksey", "localhost"}}. %%{acl, admin, {user, "ermine", "example.org"}}.This defines an administrator for the vhost "localhost":
%% %% Define specific ACLs in a virtual host. %% %%{host_config, "localhost", %% [ %% {acl, admin, {user, "bob-local", "localhost"}} %% ] %%}.Can I configure what screens and what actions a specific user can access on the webadmin?
Not implemented.