Reset Password Link does not expire on the time specified in "password_reset.request.expiry" when reset is via email URLIssue When doing password reset process, if the checkbox on the process record "Email Password Reset URL" is checked the property "password_reset.request.expiry" is not respected. The Email link will still work up to 12 hours or whatever the current value of "glide.pwd_reset.onetime.token.validity" property is in the instance. ReleaseAllCauseThis is expected. As of 2018, "password_reset.request.expiry" will not be respected if the reset is via email URL. ResolutionThe property "glide.pwd_reset.onetime.token.validity" can be set to '1' which is the shortest time it can be, and that is 1 hour not minute. OOTB this property is set to 12, which is 12 hours. This will allow the link in the password reset email to expire after the number of hours specified in that "glide.pwd_reset.onetime.token.validity" property. It cannot be set to 0.5 or other decimal value.