Skip Menu |

This queue is for tickets about the Email-Valid-Loose CPAN distribution.

Report information
The Basics
Id: 96109
Status: new
Priority: 0/
Queue: Email-Valid-Loose

People
Owner: Nobody in particular
Requestors: dayflower [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: U+0100- CHARs in email address are recognized to be VALID unexpectedly
[reproduce] use Email::Valid::Loose; no utf8; say Email::Valid::Loose->address('マルチバイト@example.com') ? 'OK' : 'NG'; # => NG use utf8; say Email::Valid::Loose->address('マルチバイト@example.com') ? 'OK' : 'NG'; # => OK (!!!) no utf8; say Email::Valid->address('マルチバイト@example.com') ? 'OK' : 'NG'; # => NG use utf8; say Email::Valid->address('マルチバイト@example.com') ? 'OK' : 'NG'; # => NG