aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_admin_adhoc.lua
Commit message (Collapse)AuthorAgeFilesLines
* mod_admin_adhoc: Add XEP-0133 commands to Disable and Re-Enable usersKim Alvefur2023-02-231-0/+66
| | | | Enables UI in clients supporting XEP-0050
* mod_admin_adhoc: Move number coercion into util.dataformsKim Alvefur2021-10-251-8/+8
| | | | | Internal use of XEP-0122 to shift the responsibility for converting numbers to strings.
* Fix various spelling errors (thanks codespell)Kim Alvefur2021-07-271-1/+1
| | | | | Also special thanks to timeless, for wordlessly reminding me to check for typos.
* mod_admin_adhoc: Log who performs administrative actionsKim Alvefur2021-06-271-13/+25
| | | | Goal is to have some accountability for these privileged actions.
* mod_admin_adhoc: Delete "Get User Password" commandKim Alvefur2021-06-271-36/+0
| | | | | | | | | This doesn't really make sense today. It doesn't even work with mod_auth_internal_hashed, which should be the default. And even with a supporting authentication module, why would we just hand out the password? One use case may be to recover a forgotten password. While not yet included with Prosody, there are better ways to handle forgotten passwords, usually by resetting them to a new password.
* mod_admin_adhoc: Remove unused JID resource variables [luacheck]Kim Alvefur2019-12-231-6/+6
|
* mod_admin_adhoc: Add some flags to s2s listing commandKim Alvefur2019-11-071-0/+12
| | | | These are present in mod_admin_telnet and relevant to s2s
* mod_admin_adhoc: Ignore the very long lines at the end [luacheck]Kim Alvefur2018-09-301-0/+1
|
* mod_admin_adhoc: Ignore shadowed 'err' variables [luacheck]Kim Alvefur2018-09-301-1/+1
|
* mod_admin_adhoc: Remove unused argument [luacheck]Kim Alvefur2018-09-301-1/+1
|
* mod_admin_adhoc: Remove unused loop variables [luacheck]Kim Alvefur2018-09-301-3/+3
|
* mod_admin_adhoc: Normalize indentationKim Alvefur2018-08-031-8/+8
|
* mod_admin_adhoc: Keep options for list-single in 'options' field where they ↵Kim Alvefur2018-08-031-2/+5
| | | | | | belong Would previously not work due to #1177
* mod_admin_adhoc: Silence various harmless warnings [luacheck]Kim Alvefur2018-05-011-0/+1
|
* mod_admin_adhoc: Rename loop variable to avoid name clash [luacheck]Kim Alvefur2018-05-011-2/+2
|
* mod_admin_adhoc: Rename variable to avoid name clash [luacheck]Kim Alvefur2018-05-011-7/+7
|
* mod_admin_adhoc: Remove unused initial values [luacheck]Kim Alvefur2018-05-011-2/+2
|
* mod_admin_adhoc: Split a long line (improves readability) [luacheck]Kim Alvefur2018-05-011-1/+6
|
* Fix spelling throughout the codebase [codespell]Kim Alvefur2018-02-041-1/+1
|
* core.usermanager, various modules: Disconnect other resources on password ↵Kim Alvefur2017-07-281-1/+1
| | | | change (thanks waqas) (fixes #512)
* mod_admin_adhoc: Show only connections to/from the host the command was run onKim Alvefur2016-01-031-1/+1
|
* mod_admin_adhoc: Remove extra ) that should not be thereKim Alvefur2016-01-031-1/+1
|
* mod_admin_adhoc: Declare local variable, don't set a global [luacheck]Kim Alvefur2015-08-261-0/+1
|
* mod_admin_adhoc: Import missing util.set (fixes #518)Kim Alvefur2015-08-261-0/+1
|
* core.*: Remove use of module() functionKim Alvefur2015-02-211-1/+1
|
* mod_admin_adhoc: Remove special treatment of the "pending" roster entryKim Alvefur2015-04-251-2/+2
|
* Merge 0.9->0.10Kim Alvefur2014-10-051-2/+2
|\
| * mod_admin_adhoc: Add required to field in user deletion form tooKim Alvefur2014-09-291-1/+1
| |
| * mod_admin_adhoc: Mark 'accountjids' field as required in 'end user sessions' ↵Kim Alvefur2014-09-291-1/+1
| | | | | | | | command (thanks Lloyd)
* | mod_admin_web: Add "List S2S connections" commandFlorian Zeitz2014-09-281-0/+82
| |
* | mod_admin_adhoc: Show IP in detailed version of online user listingFlorian Zeitz2014-09-281-2/+2
| |
* | mod_admin_adhoc: As the only user of set:items(), update... it's now an ↵Matthew Wild2013-09-031-2/+2
|/ | | | iterator, and the extra keys() iterator is now unnecessary
* mod_admin_adhoc: Fix node of the "Get List of Online Users" commandFlorian Zeitz2013-06-291-1/+1
|
* mod_admin_adhoc: Use util.adhocFlorian Zeitz2013-04-231-643/+530
|
* mod_motd, mod_register, mod_private, mod_http_errors, mod_admin_adhoc: ↵Kim Alvefur2013-03-231-4/+2
| | | | Remove unused imports
* mod_admin_adhoc: Fix 'Shut down service' commandFlorian Zeitz2013-02-071-1/+1
|
* mod_admin_adhoc: Implement global module unloadingFlorian Zeitz2013-02-071-0/+64
|
* mod_admin_adhoc: Implement global module reloadingFlorian Zeitz2013-02-071-0/+63
|
* mod_admin_adhoc: Fix info message for module reload/unloadFlorian Zeitz2013-02-061-2/+4
|
* mod_admin_adhoc: Implement global module loadingFlorian Zeitz2013-02-061-0/+55
|
* mod_admin_adhoc: Remove a TODO, our pretty_print turns out not to be helpful ↵Florian Zeitz2013-02-051-2/+1
| | | | after all
* mod_admin_adhoc: Remove unused formKim Alvefur2012-11-251-9/+0
|
* mod_admin_adhoc: Add commands for activating and deactivating hostsKim Alvefur2012-09-191-0/+63
|
* mod_admin_adhoc: Use usermanager.delete_user to delete usersKim Alvefur2012-08-251-1/+2
|
* mod_admin_adhoc, mod_announce: Explicitly specify possible actions for ↵Florian Zeitz2012-08-021-12/+12
| | | | ad-hoc commands
* mod_admin_adhoc, mod_admin_telnet, mod_bosh, mod_c2s, mod_component, ↵Kim Alvefur2012-07-261-0/+1
| | | | mod_pep, mod_presence, mod_roster, mod_s2s: Import core_post_stanza from the global prosody table.
* Hopefully inert commit to clean up logging across a number of modules, ↵Matthew Wild2012-07-231-6/+5
| | | | removing all cases of concatenation when building log messages
* Merge 0.9->trunkMatthew Wild2012-07-191-1/+0
|\
| * mod_admin_adhoc: Remove unused variable and save a bit of CPU...Matthew Wild2012-07-191-1/+0
| |
* | mod_admin_web: Use util.dataforms' own error checkingFlorian Zeitz2012-07-051-34/+50
|/