Fixes server error posting status

This commit is contained in:
Mouse Reeve
2021-01-01 07:27:56 -08:00
parent 51b61293d4
commit b3449040d9
3 changed files with 11 additions and 6 deletions

View File

@ -2,5 +2,7 @@
domain = r'[a-z-A-Z0-9_\-]+\.[a-z]+'
localname = r'@?[a-zA-Z_\-\.0-9]+'
strict_localname = r'@[a-zA-Z_\-\.0-9]+'
username = r'%s(@%s)?' % (localname, domain)
strict_username = r'%s(@%s)?' % (strict_localname, domain)
full_username = r'%s@%s' % (localname, domain)