mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 22:47:37 +03:00
table: Implement email_localpart_optional module
This commit is contained in:
parent
8083ffaf31
commit
43c0325708
2 changed files with 18 additions and 5 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue