Alexey Abel
Alexey Abel
Do you have a comprehensive source of the changes?
Hi, what is the purpose of a custom password verification class? It seems to me that the available hashing algorithms should be sufficient for 99,999% of users? I am skeptical...
Would adding an option to not hash the password at all solve your problem? Then you could use a DB trigger or stored procedure to intercept the password INSERT and...
My proposed solution would only work for new passwords but not for checking existing ones, you're right.
@vitormattos I thought about this solution more. AFAIU you still need to implement your own class even if this code is merged, since HashPassword.php is only an example and not...
What do you mean by "add a query"? Is this part of the Nextcloud user API? Please explain what exactly do you need.
A clean implementation of this is, currently not possible, due to how user backends in Nextcloud work, see: https://github.com/PanCakeConnaisseur/user_backend_sql_raw/pull/26#discussion_r502909043
You mean Nextcloud should read the Quota value from an external SQL database? What do you mean by "git"? What would this field contain and how would Nextcloud use it?
Thank you Oucil. I only now had the time to work on this. Evaluating this now.
I recently switched operating systems and the way services communicate does not involve chroots. Therefore, I looked into socket communication and it is, as you suggested, faster and easier. Easier...