I am using the following code to get the Unread emails count in Gmail. However, it is returning the error:

can't connect: Too many login failures

Is there anything I am missing here?

(IMAP and POP are enabled in the Gmail account I am testing.)


NOTE: It looks like it is working (at least for most of the requests). However, it is taking way too long - maybe 2 - 3 minutes to come back with a number. Is there a way to speed it up?


Thanks!

<?php

$mbox = imap_open ("{imap.gmail.com:993/imap/ssl/novalidate-cert/norsh}Inbox", 
"username", "password", OP_READONLY) 
or die("can't connect: " . imap_last_error()); 
$check = imap_mailboxmsginfo($mbox); 
if ($check) { 
print $check->Unread; //. "/" . $check->Nmsgs; 
} else { 
print "Failed"; 
}

?>
link|improve this question

instead of imap_last_error(), write : print_r(imap_errors()) – Igoris Azanovas Aug 9 '11 at 21:29
@Igoris: (I don't think it is related to adding the print_r) but now it just gets stuck loading – user220755 Aug 9 '11 at 21:44
It looks like it is working (taking way too long - maybe 2 - 3 minutes to come back with a number). Is there a way to speed it up? – user220755 Aug 9 '11 at 21:53
feedback

2 Answers

up vote 1 down vote accepted

You can also use the Gmail Inbox Feed to get the unread count. Just send an authenticated GET request to https://mail.google.com/mail/feed/atom and check the value of the fullcount element.

link|improve this answer
feedback

Try outputting all of the errors that may have been encountered:

$mbox = imap_open("{imap.gmail.com:993/imap/ssl/novalidate-cert/norsh}Inbox", "username", "password", OP_READONLY) or die('Cannot connect to Gmail: ' . print_r(imap_errors()));
link|improve this answer
(I don't think it is related to adding the print_r) but now it just gets stuck loading – user220755 Aug 9 '11 at 21:43
Try accessing your account manually and see if it allows you to login. It may ask you for a captcha due to the failed attempts. – RobB Aug 9 '11 at 21:44
It looks like it is working (taking way too long - maybe 2 - 3 minutes to come back with a number). Is there a way to speed it up? – user220755 Aug 9 '11 at 21:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.