X-Git-Url: http://gitweb.michael.orlitzky.com/?p=valtz.git;a=blobdiff_plain;f=valtz;h=0ca0e6af003eacb7c5150c3dfb765488b84cb6ce;hp=26d516db4a8350b2b4ccb4173eb8cd6ce5196865;hb=2533843a92ae5a7cb04894c815b844b02ffa4242;hpb=097807e6b55527da495fa668a3c47fc938393743 diff --git a/valtz b/valtz index 26d516d..0ca0e6a 100755 --- a/valtz +++ b/valtz @@ -76,6 +76,7 @@ my %validation_msg = ( 1008 => 'integer out of bounds', 1009 => 'must have at least three labels to be valid as mail address', 1010 => 'must not be 2(NS), 5(CNAME), 6(SOA), 12(PTR), 15(MX) or 252(AXFR)', + 1011 => 'IP address found where hostname expected' ); # NOTE : ONLY translate the right-hand part @@ -238,6 +239,13 @@ my %token_validator = ( 'x' => [ 5, sub { my ($type, $s) = @_; my $result = 0; + + # Check to see if someone put an IP address in a hostname + # field. The motivation for this was MX records where many + # people expect an IP address to be a valid response, but I + # see no harm in enforcing it elsewhere. + return 1011 if $s =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\.?$/; + # check all parts for (split /\./, $s) {