Skip Menu |

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

Report information
The Basics
Id: 103187
Status: open
Priority: 0/
Queue: Email-Valid-Loose

People
Owner: Nobody in particular
Requestors: dean [...] fragfest.com.au
Cc:
AdminCc:

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



Subject: Module now redundant
Email::Valid now accepts foo.bar@woka.com as valid. This module now seems to be redundant.
On 2015-03-29 21:41:01, djzort wrote: Show quoted text
> Email::Valid now accepts foo.bar@woka.com as valid. This module now > seems to be redundant.
I think the purpose of Email::Valid::Loose is to accept addresses with a dot _directly_ before the at mark. The following test shows that Email::Valid does not accept this: #!perl use strict; use Email::Valid; use Email::Valid::Loose; use Test::More 'no_plan'; my $addr = 'read_rfc822.@docomo.ne.jp'; ok(Email::Valid::Loose->address($addr)); ok(Email::Valid->address($addr)); __END__ Output: ok 1 not ok 2 # Failed test at email.pl line 11.