https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6132
--- Comment #2 from Karsten Bräckelmann <[email protected]> 2009-06-10 08:10:12 PST --- Didn't actually run any debugging, just poking at the code for some review, but there's a problem with the whitelisting in parse_config(). if ($opts->{key} eq "freemail_whitelist") { foreach my $temp (split(/\s+/, $opts->{value})) { my $value = lc($temp); if ($temp =~ /\...@]\w/i) { $self->{freemail_domains}{$value} = 1; } I believe that should be freemail_whitelist instead of freemail_domain here. Oh, and for consistency, you should match $value against the RE. ;) -- Configure bugmail: https://issues.apache.org/SpamAssassin/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
