Hi,

Could someone add the following code to the the parse_received_headers
sub in the Mail::SpamAssassin::Message::Metadata::Received module?

    if (/ecelerity /) {
        if (/^from \(\[(${IP_ADDRESS}):\d+\] helo=(\S+)\) by (\S+)/) {
            $ip = $1; $helo = $2; $by = $3;
            / id (\S+)/ and $id = $1;
            goto enough;
        }
    }

The code tries to parse the ecelerity Received: headers, which
apparently to exotic to be parsed using the default rules. When
added at line 419, it seems to fix the ALL_TRUSTED misfires for 
the ASF's frontline MX.

Thanks!

-- 
Joe Schaefer

Reply via email to