|
|
|
|
|
by doxcf434
3042 days ago
|
|
The problem is that there are many email addresses that are valid but are likely just abusers. An email address entirely of * and 200 chars long is valid in the RFC, but clearly not a human. I settled on < 100 chars and: `^[\w\.\+\-]+@[\w\-]+\.[\w\-\.]+$` We'll see how it goes in production :) |
|
Why not just allow any input and validate the address by attempting to send to it. It's really the only way to tell if its a real address.
What abuse can a person bring on your system by having a 200 char email address? That should be nothing in terms of server load.