https://github.com/ligoj/plugin-password
https://github.com/ligoj/plugin-password
ligoj-plugin
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ligoj/plugin-password
- Owner: ligoj
- License: mit
- Created: 2017-03-24T08:59:21.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-05-29T17:41:08.000Z (about 1 year ago)
- Last Synced: 2025-05-29T18:52:04.209Z (about 1 year ago)
- Topics: ligoj-plugin
- Language: Java
- Size: 177 KB
- Stars: 5
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :link: Ligoj Password Management plugin [](https://maven-badges.herokuapp.com/maven-central/org.ligoj.plugin/plugin-password)
[](https://sonarcloud.io/dashboard?id=org.ligoj.plugin%3Aplugin-password)
[](https://sonarcloud.io/dashboard/index/org.ligoj.plugin:plugin-password)
[](https://www.codacy.com/gh/ligoj/plugin-password?utm_source=github.com&utm_medium=referral&utm_content=ligoj/plugin-password&utm_campaign=Badge_Grade)
[](https://www.codefactor.io/repository/github/ligoj/plugin-password)
[](http://fabdouglas.mit-license.org/)
[Ligoj](https://github.com/ligoj/ligoj) Password Management plugin
This plugin does not hold password, only tokens for renew request. The storage is delegated
to [plugin-id](https://github.com/ligoj/plugin-id)
Provides the following features :
- Mail for new accounts
- Mail challenge reset password
Spring-Boot properties (can be injected in `CUSTOM_OPTS`) and can be dynamically modified from the administration
console:
| Name | Default value | Note |
|------------------------------|---------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|
| password.mail.from | | Mail `FROM` attribute when generated password is sent |
| password.mail.new.subject" | | Mail `SUBJECT` attribute when generated password is sent |
| password.mail.new.content | | Mail `BODY` attribute when generated password is sent. Can be a template containing `$FULLNAME`,`$FIRSTNAME`,`$LASTNAME`,`$LINK`,`$ID`,`$COMPANY` |
| password.mail.reset.subject | | Same than `password.mail.new.subject` be for reset workflow |
| password.mail.reset.content | | Same than `password.mail.new.content` be for reset workflow |
| password.mail.node | | Ligoj plugin node's identifier, implementing `service:mail` contract. See [plugin-mail](https://github.com/ligoj/plugin-mail). When undefined, no mail is sent. |
| password.mail.from | | Mail `FROM` attribute when generated password is sent |
| password.mail.url | | Reset URL overriding the application's URL. |
| password.strength.gen.length | `10` | Generated default length for generated password. |
| password.strength.validation | `^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9]).{10,}$` | Regular expression validating a new manual password. |