allow : in FreeRADIUS user and password (#3976)

This commit is contained in:
Chris Helming
2024-07-22 12:47:34 +02:00
committed by GitHub
parent 7d837d7f6d
commit 44abf3ff22
2 changed files with 4 additions and 4 deletions
@@ -9,13 +9,13 @@
<id>user.username</id>
<label>Username</label>
<type>text</type>
<help>Set the unique username for the user. Allowed characters are 0-9, a-z, A-Z, and ._-@/</help>
<help>Set the unique username for the user. Allowed characters are 0-9, a-z, A-Z, and ._-@/:</help>
</field>
<field>
<id>user.password</id>
<label>Password</label>
<type>password</type>
<help>Set the password for the user. Allowed characters are 0-9, a-z, A-Z, and ,._-!$%/()+#= with up to 128 characters.</help>
<help>Set the password for the user. Allowed characters are 0-9, a-z, A-Z, and ,._-!$%/()+#=: with up to 128 characters.</help>
</field>
<field>
<id>user.passwordencryption</id>
@@ -11,11 +11,11 @@
</enabled>
<username type="TextField">
<Required>Y</Required>
<mask>/^([0-9a-zA-Z@._\-\/]){1,128}$/u</mask>
<mask>/^([0-9a-zA-Z@._\-\/:]){1,128}$/u</mask>
</username>
<password type="TextField">
<Required>Y</Required>
<mask>/^([0-9a-zA-Z._\-\!\$\%\/\(\)\+\#\=\{\}]){1,128}$/u</mask>
<mask>/^([0-9a-zA-Z._\-\!\$\%\/\(\)\+\#\=\{\}:]){1,128}$/u</mask>
</password>
<passwordencryption type="OptionField">
<default>Cleartext-Password</default>