mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Allow plus on email (#564)
This commit is contained in:
commit
dedaf98c50
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ const dynDomain = helpers.regex(
|
|||
new RegExp(`^(?:xn--)?[\\da-z-${nonAsciiWordCharacters}]+$`),
|
||||
)
|
||||
|
||||
const emailLocalPart = helpers.regex('emailLocalPart', /^[\w.-]+$/)
|
||||
const emailLocalPart = helpers.regex('emailLocalPart', /^[\w+.-]+$/)
|
||||
|
||||
const emailForwardLocalPart = helpers.regex(
|
||||
'emailForwardLocalPart',
|
||||
|
|
Loading…
Reference in a new issue