You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add regex ^[a-z]+\.[a-z]+$ in the Invalid username policy regex Login name policy field
Expected behaviour
Expression is accepted and users are only allowed to use a name.surname format as a username
Actual behaviour
Get Invalid username policy regex error message.
Server configuration
Operating system:
OMV Database:
mysql PHP version:
8.2.9 Nextcloud version: (see Nextcloud admin page)
27.0.2 Where did you install Nextcloud from:
Docker
^\p{Ll}+\.\p{Ll}+$ is invalid because it features non-legal letters, yet ^[a-z]+\.[a-z]+$ only features lowercase and a-z and a period?
The text was updated successfully, but these errors were encountered:
Steps to reproduce
^[a-z]+\.[a-z]+$
in the Invalid username policy regex Login name policy fieldExpected behaviour
Expression is accepted and users are only allowed to use a
name.surname
format as a usernameActual behaviour
Get
Invalid username policy regex
error message.Server configuration
Operating system:
OMV
Database:
mysql
PHP version:
8.2.9
Nextcloud version: (see Nextcloud admin page)
27.0.2
Where did you install Nextcloud from:
Docker
^\p{Ll}+\.\p{Ll}+$
is invalid because it features non-legal letters, yet^[a-z]+\.[a-z]+$
only features lowercase and a-z and a period?The text was updated successfully, but these errors were encountered: