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





------- Additional Comments From [EMAIL PROTECTED]  2004-05-27 21:06 -------
Subject: Re:  fix T_ALL_TRUSTED FPs

On Thu, May 27, 2004 at 08:48:36PM -0700, [EMAIL PROTECTED] wrote:
> Here's an example of the mail in it's entirety:
> 
> >From unknown Wed Feb 18 04:01:40 2004
> Message-ID: [EMAIL PROTECTED]
> Status: O
> Content-Length: 0
> Lines: 0

hrm.

since the code is:

  if ($self->{num_relays_untrusted} > 0) {
    return 0;
  } else {
    return 1;
  }

I'm wondering if it should really be:

  if ($self->{num_relays_untrusted} > 0 || $self->{num_relays_trusted} == 0) {
    return 0;
  } else {
    return 1;
  }

so that instead of "the message has been relayed through at least 1
untrusted relay" it becomes "the message has been relayed, and it's gone
through at least 1 untrusted relay".  subtle difference.





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

Reply via email to