http://bugzilla.spamassassin.org/show_bug.cgi?id=3930
------- Additional Comments From [EMAIL PROTECTED] 2004-10-28 14:25 -------
O ... M ... G ... !
Ok, so yeah uridnsbl_max_domains is ignored. Rather spectacularly actually.
my @longlist = keys %domlist;
my @shortlist = ();
for ($i = $scanner->{main}->{conf}->{uridnsbl_max_domains}; $i > 0; $i--) {
my $r = int rand (scalar @longlist);
push (@shortlist, splice (@longlist, $r, 1));
last if (scalar @longlist <= 0);
}
goes through the full list of domains and picks uridnsbl_max_domains randomly
from the list, and puts
it into shortlist. the code then completely ignores the new array and just
queries for all the domains.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.