something like
if ((()=$Header =~ /^(Rec)/m) > 100){ # ()= to create temp array to count
To replicate qmail-smtpd it would be more like
my $hops = 0;
$hops++ for $header->get('Received'), $header->get('Delivered-To');
if ( $hops >= 100 ) {I'm not sure why "Received" and "Delivered-To" are counted as separate hops, though.
-- Keith C. Ivey <[EMAIL PROTECTED]> Washington, DC
