[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2023-09-19 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Assignee|emmi.takki...@koha-suomi.fi |koha-b...@lists.koha-commun

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2021-08-24 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #31 from Fridolin Somers --- Note that there is now a plugin hook : Bug 22706 -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-10-06 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Attachment #110528|0 |1 is obsolete|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-10-06 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Attachment #110527|0 |1 is obsolete|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-10-06 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Attachment #110526|0 |1 is obsolete|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-10-06 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #27 from Emmi Takkinen --- (In reply to David Cook from comment #26) > Does Koha-Suomi Oy already have these patches running in Koha? > > I'm going to mark as Failed QA, as I think the current password policies > won't

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-10-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 David Cook changed: What|Removed |Added Status|Needs Signoff |Failed QA --- Comment #26

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-10-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #25 from David Cook --- For what it's worth, I've tested Keycloak again and now my Chinese software keyboard is working for inputting passwords. -- You are receiving this mail because: You are watching all bug changes.

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #24 from David Cook --- One very last thing... Perl also has the Unicode::UCD module, which also allows us to interrogate the properties of Unicode characters without using regular expressions. (This would be more in

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #23 from David Cook --- I mention Keycloak as well, since Keycloak is actually an Angular app which uses Java for its backend. When I set a password policy and try to set a password that doesn't match it, I get a 400

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #22 from David Cook --- Apologies if people find this uninteresting. Keycloak's LowerCasePasswordPolicyProvider.java file uses Java's Character.isLowerCase() function... Looking at OpenJDK 8...

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #21 from David Cook --- The following is incomplete but could be useful for testing individual characters (you'd just have to iterate through the password string). Tangentially, Chinese characters will pass both the

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #20 from David Cook --- Ok because I'm insufferable... The following passes: var min_lenght = 3; var regex_text =

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #19 from David Cook --- Comment on attachment 110528 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=110528 Bug 12617: Add new regex patterns to password_check.inc Review of attachment 110528: -->

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #18 from David Cook --- (In reply to Fridolin SOMERS from comment #16) > > However Javascript doesn't seem to support POSIX > Ah ok good point. > > But why are öäåÄÖÅ not in : > if ( password_policy == 'complex' ){ >

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #17 from David Cook --- (In reply to Fridolin SOMERS from comment #16) > > However Javascript doesn't seem to support POSIX > Ah ok good point. > > But why are öäåÄÖÅ not in : > if ( password_policy == 'complex' ){ >

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #16 from Fridolin SOMERS --- > However Javascript doesn't seem to support POSIX Ah ok good point. But why are öäåÄÖÅ not in : if ( password_policy == 'complex' ){ chars =

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #15 from Emmi Takkinen --- (In reply to Fridolin SOMERS from comment #14) > Hi, nice work. > > Just a question : > I see in first patch : $password =~ /[a-zA-ZöäåÖÄÅ]/ > I don't see the caracters öäå in patch on

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-25 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Fridolin SOMERS changed: What|Removed |Added CC|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-22 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Status|Patch doesn't apply |Needs Signoff -- You are

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-22 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #12 from Emmi Takkinen --- Created attachment 110527 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=110527=edit Bug 12617: DO NOT PUSH! Schema change -- You are receiving this mail because: You are

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-22 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Attachment #109389|0 |1 is obsolete|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-22 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Attachment #109388|0 |1 is obsolete|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-10 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Joonas Kylmälä changed: What|Removed |Added CC||joonas.kylm...@helsinki.fi

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-01 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Status|ASSIGNED|Needs Signoff -- You are

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-01 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Attachment #107383|0 |1 is obsolete|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-09-01 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Attachment #107382|0 |1 is obsolete|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-08-19 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Jonathan Druart changed: What|Removed |Added Depends on||23816

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-07-27 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #7 from Emmi Takkinen --- Created attachment 107384 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=107384=edit Bug 12617: Add syspref PasswordLengthsForCategories Sometimes different patron categories

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-07-27 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Status|ASSIGNED|Needs Signoff -- You are

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-07-27 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #6 from Emmi Takkinen --- Created attachment 107383 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=107383=edit Bug 12617: Add new regex patterns to password_check.inc This patch adds new regex

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-07-27 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added Attachment #37740|0 |1 is obsolete|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-07-22 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Emmi Takkinen changed: What|Removed |Added CC||emmi.takki...@outlook.com

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-07-08 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 David Cook changed: What|Removed |Added See Also||https://bugs.koha-community

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-07-08 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 David Cook changed: What|Removed |Added See Also||https://bugs.koha-community

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2020-07-08 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 koha-US bug tracker changed: What|Removed |Added CC||bugzi...@koha-us.org

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2019-04-15 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Owen Leonard changed: What|Removed |Added Status|Needs Signoff |Patch doesn't apply -- You

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2019-04-15 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Owen Leonard changed: What|Removed |Added Status|NEW |Needs Signoff -- You are

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2019-04-15 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Magnus Enger changed: What|Removed |Added CC||mag...@libriotech.no ---

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity /difficulty

2017-07-31 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #2 from Marc Véron --- *** Bug 18424 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity /difficulty

2017-06-13 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Olli-Antti Kivilahti changed: What|Removed |Added See Also|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity /difficulty

2017-06-13 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Lari Taskula changed: What|Removed |Added CC|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity /difficulty

2017-06-13 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Olli-Antti Kivilahti changed: What|Removed |Added See Also|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2015-04-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 --- Comment #1 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi --- Created attachment 37740 -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=37740action=edit Bug 12617 - Koha should let admins to configure

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2014-08-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Katrin Fischer katrin.fisc...@bsz-bw.de changed: What|Removed |Added CC|

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2014-07-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Marc Véron ve...@veron.ch changed: What|Removed |Added CC||ve...@veron.ch

[Koha-bugs] [Bug 12617] Koha should let admins to configure automatically generated password complexity/difficulty

2014-07-21 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12617 Jacek Ablewicz a...@biblos.pk.edu.pl changed: What|Removed |Added CC|