Software / code / prosody-modules
Comparison
mod_invites_register_web/README.markdown @ 4833:15cf32e666da
mod_invites_register_web: Add mod_password_policy checks for web registration
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Wed, 22 Dec 2021 15:05:31 +0000 |
| parent | 4224:816c2fa1ca84 |
| child | 5141:027fb71ad509 |
comparison
equal
deleted
inserted
replaced
| 4832:bfd4af4caddc | 4833:15cf32e666da |
|---|---|
| 4 summary: 'Register accounts via the web using invite tokens' | 4 summary: 'Register accounts via the web using invite tokens' |
| 5 rockspec: | 5 rockspec: |
| 6 dependencies: | 6 dependencies: |
| 7 - mod_invites | 7 - mod_invites |
| 8 - mod_invites_page | 8 - mod_invites_page |
| 9 - mod_password_policy | |
| 9 - mod_register_apps | 10 - mod_register_apps |
| 10 build: | 11 build: |
| 11 copy_directories: | 12 copy_directories: |
| 12 - html | 13 - html |
| 13 ... | 14 ... |
| 42 on the current host, it will default to the URL of that module. | 43 on the current host, it will default to the URL of that module. |
| 43 | 44 |
| 44 This module depends on mod_invites_page solely for the case where an invalid | 45 This module depends on mod_invites_page solely for the case where an invalid |
| 45 invite token is received - it will redirect to mod_invites_page so that an | 46 invite token is received - it will redirect to mod_invites_page so that an |
| 46 appropriate error can be served to the user. | 47 appropriate error can be served to the user. |
| 48 | |
| 49 The module also depends on [mod_password_policy] (which will be automatically | |
| 50 loaded). As a consequence of this module being loaded, the default password | |
| 51 policies will be enforced for all registrations on the server if not | |
| 52 explicitly loaded or configured. |