http://bugzilla.spamassassin.org/show_bug.cgi?id=4099





------- Additional Comments From [EMAIL PROTECTED]  2005-01-25 23:08 -------
ok, I've mass-checked 94142 ham messages with 3.0.0 and trunk.

the differences are entirely messages where there are NO received headers -- in
3.0.0 it's:

  my ($self) = @_;
  if ($self->{num_relays_untrusted} > 0) {
    return 0;
  } else {
    return 1;
  }

in 3.1.0 it's:

  my ($self) = @_;
  return $self->{num_relays_trusted}
        && !$self->{num_relays_untrusted}
        && !$self->{num_relays_unparseable};

by changing that to

  my ($self) = @_;
  return $self->{num_relays_trusted} >= 0
        && !$self->{num_relays_untrusted}
        && !$self->{num_relays_unparseable};

I get *identical* hits on that 90k-message corpus to what I get with a
mass-check from 3.0.0.





------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Reply via email to