-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Milestone
Description
In
https://github.com/owncloud/core/blob/master/lib/private/User/Session.php#L609
the owncloud core checks every 5 minutes, if the user still has the same credentials or is not locked.
This is bad for different reasons:
- In case of LDAP this will create load on the LDAP server every 5 minutes.
- In case you are using OTP with the backend (we are using an LDAP proxy, which allows bind requests with a one time password) this will result in being logged out after five minutes, since the password is not the same anymore.
Request
Please make this value configurable so that:
- it can be turned off
- it can be set to a much higher number like 8 hours.
Reactions are currently unavailable