table: Implement email_localpart_optional module

This commit is contained in:
fox.cpp 2023-03-08 16:14:03 +03:00
parent 8083ffaf31
commit 43c0325708
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
2 changed files with 18 additions and 5 deletions

View file

@ -1,12 +1,19 @@
# Email local part
The module 'table.email\_localpart' extracts and unescaped local ("username") part
The module 'table.email\_localpart' extracts and unescapes local ("username") part
of the email address.
E.g.
test@example.org => test
"test @ a"@example.org => test @ a
Mappings for invalid emails are not defined (will be treated as non-existing
values).
```
table.email_localpart { }
```
`table.email_localpart_optional` works the same, but returns non-email strings
as is. This can be used if you want to accept both `user@example.org` and
`user` somewhere and treat it the same.