Software / code / prosody-modules
Comparison
mod_adhoc_account_management/README.markdown @ 1803:4d73a1a6ba68
Convert all wiki pages to Markdown
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 28 Aug 2015 18:03:58 +0200 |
| parent | 1782:mod_adhoc_account_management/README.wiki@29f3d6b7ad16 |
comparison
equal
deleted
inserted
replaced
| 1802:0ab737feada6 | 1803:4d73a1a6ba68 |
|---|---|
| 1 --- | |
| 2 labels: | |
| 3 - 'Stage-Alpha' | |
| 4 summary: Personal account management command | |
| 5 ... | |
| 6 | |
| 7 Introduction | |
| 8 ============ | |
| 9 | |
| 10 This module adds an ad-hoc command that lets an user change their | |
| 11 password. This is useful for clients that don't have support for | |
| 12 [XEP-0077](http://xmpp.org/extensions/xep-0077.html) style password | |
| 13 changing. In the future, it may provide other account management | |
| 14 commands. | |
| 15 | |
| 16 Configuration | |
| 17 ============= | |
| 18 | |
| 19 modules_enabled = { | |
| 20 -- other modules -- | |
| 21 "adhoc_account_management", | |
| 22 | |
| 23 } | |
| 24 | |
| 25 close_sessions_on_password_change = true | |
| 26 require_current_password = true | |
| 27 require_confirm_password = true | |
| 28 | |
| 29 Option Default Description | |
| 30 --------------------------------------- --------- ---------------------------------------------------------------- | |
| 31 close\_sessions\_on\_password\_change true Changing password invalidates other sessions the user may have | |
| 32 require\_current\_password true Add a field for the current password | |
| 33 require\_confirm\_password true Add a field for confirming the current password | |
| 34 | |
| 35 Todo | |
| 36 ==== | |
| 37 | |
| 38 Suggestions welcome, |