Help for this page

Select Code to Download


  1. or download this
    my @unread = $imap->unseen or warn "Could not find unseen msgs: $@\n";
    
  2. or download this
            foreach my $f ($imap->folders) {
                    print   "The $f folder has ",
                            $imap->unseen_count($f)||0, 
                            " unseen messages.\n";          
            }