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.