comparison 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
comparison
equal deleted inserted replaced
1781:12ac88940fe3 1782:29f3d6b7ad16
1 #summary Personal account management command
2 #labels Stage-Alpha
3
4 = Introduction =
5
6 This module adds an ad-hoc command that lets an user change their
7 password. This is useful for clients that don't have support for
8 [http://xmpp.org/extensions/xep-0077.html XEP-0077] style password
9 changing. In the future, it may provide other account management
10 commands.
11
12 = Configuration =
13
14 {{{
15 modules_enabled = {
16 -- other modules --
17 "adhoc_account_management",
18
19 }
20
21 close_sessions_on_password_change = true
22 require_current_password = true
23 require_confirm_password = true
24 }}}
25
26 || *Option* || *Default* || *Description* ||
27 || close_sessions_on_password_change || true || Changing password invalidates other sessions the user may have ||
28 || require_current_password || true || Add a field for the current password ||
29 || require_confirm_password || true || Add a field for confirming the current password ||
30
31 = Todo =
32
33 Suggestions welcome,