diff mod_adhoc_account_management/README.wiki @ 1782:29f3d6b7ad16

Import wiki pages
author Kim Alvefur <zash@zash.se>
date Mon, 24 Aug 2015 16:43:56 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_adhoc_account_management/README.wiki	Mon Aug 24 16:43:56 2015 +0200
@@ -0,0 +1,33 @@
+#summary Personal account management command
+#labels Stage-Alpha
+
+= Introduction =
+
+This module adds an ad-hoc command that lets an user change their
+password.  This is useful for clients that don't have support for
+[http://xmpp.org/extensions/xep-0077.html XEP-0077] style password
+changing.  In the future, it may provide other account management
+commands.
+
+= Configuration =
+
+{{{
+modules_enabled = {
+	-- other modules --
+	"adhoc_account_management",
+
+}
+
+close_sessions_on_password_change = true
+require_current_password = true
+require_confirm_password = true
+}}}
+
+|| *Option*                          || *Default* || *Description* ||
+|| close_sessions_on_password_change || true      || Changing password invalidates other sessions the user may have ||
+|| require_current_password          || true      || Add a field for the current password  ||
+|| require_confirm_password          || true      || Add a field for confirming the current password ||
+
+= Todo =
+
+Suggestions welcome,