http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4485
------- Additional Comments From [EMAIL PROTECTED] 2005-12-03 03:40 -------
btw, I put in a validation RE into 3.2.0 in r351875:
===============================================================
====
--- NetSet.pm (revision 351873)
+++ NetSet.pm (working copy)
@@ -96,6 +96,7 @@
my ($self, $ip) = @_;
if (!defined $self->{nets}) { return 0; }
+ if ($ip !~ m/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/) { return 0; }
$ip = Mail::SpamAssassin::Util::my_inet_aton($ip);
foreach my $net (@{$self->{nets}}) {
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.