reopen 440622 =
thanks

Taking a look into node/node.d/exim_mailstats.in shows, that NOTHING has
changed! There is still a fixed substr expression which will break
log_selector "+pid":
    while ($line = <$LOGFILE>) {
        chomp ($line);

        if (substr ($line, 37,2 ) eq '<=') {
            $received++;
        } elsif (substr ($line, 37,9) eq 'Completed') {
            $completed++;
        } elsif ($line=~/rejected/) {
            $rejected++;
        }
    }

So this bug is still NOT fixed.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to