Software /
code /
prosody
Changeset
4974:1574f18b0ca4
mod_admin_telnet: Add info about user management commands to the help
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 09 Jul 2012 20:39:55 +0200 |
parents | 4973:3f7248ac1a3b |
children | 4975:6f689c155186 |
files | plugins/mod_admin_telnet.lua |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_admin_telnet.lua Mon Jul 09 20:21:47 2012 +0200 +++ b/plugins/mod_admin_telnet.lua Mon Jul 09 20:39:55 2012 +0200 @@ -187,6 +187,7 @@ print [[s2s - Commands to manage sessions between this server and others]] print [[module - Commands to load/reload/unload modules/plugins]] print [[host - Commands to activate, deactivate and list virtual hosts]] + print [[user - Commands to create and delete users, and change their passwords]] print [[server - Uptime, version, shutting down, etc.]] print [[config - Reloading the configuration, etc.]] print [[console - Help regarding the console itself]] @@ -207,6 +208,10 @@ print [[host:activate(hostname) - Activates the specified host]] print [[host:deactivate(hostname) - Disconnects all clients on this host and deactivates]] print [[host:list() - List the currently-activated hosts]] + elseif section == "user" then + print [[user:create(jid, password) - Create the specified user account]] + print [[user:password(jid, password) - Set the password for the specified user account]] + print [[user:delete(jid, password) - Permanently remove the specified user account]] elseif section == "server" then print [[server:version() - Show the server's version number]] print [[server:uptime() - Show how long the server has been running]]