Help for this page

Select Code to Download


  1. or download this
    if ($#ARGV == -1) {
      goto mailcon;
    ...
    } else {
      $nopts = 0;
    }
    
  2. or download this
    if (@ARGV) {
      $nopts = 0;
    ...
      goto mailcon;
      $nopts = 1;
    }
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    print $retrieved_messages;
    
    $pop->quit();