Sorry, i forgot to do that. here's the code I'm using:
<?php
require ('pop3.class.inc');
$pop3 = new POP3;
$do = $pop3->connect ('pop.gmail.com', '995', '25', '50');
if ($do == false)
 {die($pop3->error);}
else
 {
 echo 'Connected to mail server';
 // Login to your inbox
 $do = $pop3->login ('
[email protected]', 'myPassword***');
 if ($do == false)
  {die($pop3->error);}
 else
  {echo 'Logged in';}
 }
 $pop3->close();
?>
I've tried a couple of variations on that code, nothing works