Help for this page

Select Code to Download


  1. or download this
        ++$count{$2}; # Why ++$count? why {$2} here? is it bcos of (Passed
    +|Blocked) ?
    
  2. or download this
      } elsif (/amavis.*(BAD-HEADER)-/) {
        ++$count{$1}; # why {$1} here? is it bcos of (BAD-HEADER)
    
  3. or download this
      } elsif (/reject/){
        ++$count{'REJECTED'}; #Hmm, Why {'REJECTED'}?
      }
    }
    
  4. or download this
    my @data=();
    $data[0] = $count{'CLEAN'} || 0; # use 0 if $count{'CLEAN'} is undefin
    +ed 
    ...
    $data[3] = $count{'BANNED'} || 0;
    $data[4] = $count{'BAD-HEADER'} || 0;
    $data[5] = $count{'REJECTED'} || 0;