Help for this page

Select Code to Download


  1. or download this
    FLAGS (\Seen) UID 42 RFC822.TEXT {234565}
    this is a bunch of string data, but 
    ...
    ..snip..
    a lot more string
     RFC822.SIZE 234565  INTERNALDATE " 21 FEB 2016 12:23:23 +1000")
    
  2. or download this
    while( $sz > 32760 ) {
       $m =~ /(^.{32760})/g;
    ...
    }
    $m =~ /(^.{$sz})/g;
    print $FH $1;