badoux / checkmail

Golang package for email validation
MIT License
710 stars 92 forks source link

ValidateFormat: do not html.Unescape and trim spaces #3

Closed dolmen closed 7 years ago

dolmen commented 7 years ago

Do not html.Unescape and trim spaces because:

  1. This should not be the job of this library and is not an expectation of users of the function
  2. This has the risk of allowing nasty encodings and dirty exploits

This PR contains also a few other small commits. Tell me if you prefer I separate them.

badoux commented 7 years ago

Thanks for your contribution