Closed
Description
Q | A |
---|---|
Bug report? | yes |
Feature request? | no |
BC Break report? | no |
RFC? | no |
Symfony version | master |
There's a problem when using checkMX option with email with a @ at the end leading to error "Warning: checkdnsrr(): Host cannot be empty"
The regex '/^.+@\S+.\S+$/' line 81 allow email pattern like 'name@email.com@' but the code substr($value, strrpos($value, '@') + 1) line 90 doesn't work then and return empty string for $host...