Skip to content

Commit

Permalink
Merge pull request #2139 from ProgrammeVitam/bug_13571-password-reset…
Browse files Browse the repository at this point in the history
…-number-of-uses

Fix #13571: Password reset token should be revoked after 1st use
  • Loading branch information
marob authored Oct 15, 2024
2 parents ade72e8 + 98f9c09 commit 6505287
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ cas.authn.pm.reset.mail.text: "Changez de mot de passe via le lien: %s"
cas.authn.pm.reset.mail.from: serveur-cas@noreply.com
# 1 Day : 24 * 60 Minutes to reset password
cas.authn.pm.reset.expiration: PT1440M
cas.authn.pm.reset.number-of-uses: 2
cas.authn.pm.reset.number-of-uses: 1
cas.authn.pm.reset.mail.attribute-name: email
cas.authn.pm.reset.security-questions-enabled: false
cas.authn.pm.reset.include-server-ip-address: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ cas.authn.pm.reset.mail.text: "Changez de mot de passe via le lien: %s"
cas.authn.pm.reset.mail.from: serveur-cas@noreply.com
# 1 Day : 24 * 60 Minutes to reset password
cas.authn.pm.reset.expiration: PT1440M
cas.authn.pm.reset.number-of-uses: 2
cas.authn.pm.reset.number-of-uses: 1
cas.authn.pm.reset.mail.attribute-name: email
cas.authn.pm.reset.security-questions-enabled: false
cas.authn.pm.reset.include-server-ip-address: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ cas.authn.pm.reset.mail.subject: Requete de reinitialisation de mot de passe
cas.authn.pm.reset.mail.text: "Changez de mot de passe via le lien: %s"
cas.authn.pm.reset.mail.from: {{ smtp.cas.sender }}
cas.authn.pm.reset.expiration: PT{{ smtp.cas.expiration }}M
cas.authn.pm.reset.number-of-uses: 2
cas.authn.pm.reset.number-of-uses: 1
cas.authn.pm.reset.mail.attribute-name: email
cas.authn.pm.reset.security-questions-enabled: false
cas.authn.pm.reset.include-server-ip-address: false
Expand Down

0 comments on commit 6505287

Please sign in to comment.