I've installed this module to gain access and controls within a Gmail inbox. However, when I try to connect through a small Perl script and test the functionality, I get this error message.

Error: Could not login with those credentials - could not find final URL
  Additionally, HTTP error: 200 OK

This is an error built within the Gmail.pm module.

I can ping the URL in question ( https://www.google.com/accounts/ServiceLoginBoxAuth ) so I feel that the trouble isn't finding the URL. Furthermore, I know the credentials are correct and work at that URL because I have tried them manually.

I'm using this script for testing. I have supplied my credentials in the appropriate places.


I've also installed this module with the same type of error.

Any idea why I'm getting blocked?

link|improve this question

7  
That distribution hasn't been updated since 2006; GMail has changed a lot in that time. Why not just use IMAP? – friedo Mar 2 '10 at 15:23
didn't see that 2006 date.... thanks for letting me know.... where can I find an IMAP module? or do I even need one – CheeseConQueso Mar 2 '10 at 15:33
im not too fond on accessing & parsing email boxes as you might notice by my last question post that got shot down – CheeseConQueso Mar 2 '10 at 15:35
Net::IMAP::Client looks pretty complete, but I haven't personally used it. search.cpan.org/~mishoo/Net-IMAP-Client-0.93/lib/Net/IMAP/… – friedo Mar 2 '10 at 15:49
Cant connect using that one either - "Could not connect to IMAP server" – CheeseConQueso Mar 2 '10 at 16:10
feedback

5 Answers

up vote 7 down vote accepted

Use Mail::IMAPClient as shown below. To get pass SSL authentication through Mail::IMAPClient, you should have IO::Socket::SSL from Net::SSLeay installed. If so this works like a charm.

#!/usr/bin/env perl
use strict; use warnings;
use Mail::IMAPClient;

# Connect to IMAP server
my $client = Mail::IMAPClient->new(
  Server   => 'imap.gmail.com',
  User     => 'yourusername',
  Password => 'yourp4a55w0r&',
  Port     => 993,
  Ssl      =>  1,
  )
  or die "Cannot connect through IMAPClient: $!";

# List folders on remote server (see if all is ok)
if ( $client->IsAuthenticated() ) {
  print "Folders:\n";
  print "- ", $_, "\n" for @{ $client->folders() };  
};

# Say so long
$client->logout();
link|improve this answer
that connected me.... thanks.... now to browse the module for methods – CheeseConQueso Mar 2 '10 at 18:31
whats the method(s) to parse messages? – CheeseConQueso Mar 2 '10 at 19:12
nvm... i got it – CheeseConQueso Mar 2 '10 at 20:26
You should show $@ instead of $! if the new() fails. – Michael Krebs Jun 22 '11 at 1:10
@Krebs Why should I prefer to display $EVAL_ERROR ($@) rather than $ERRNO ($!) which, printed as a string, yields the error string of the last system or library call. $@ is set if a string to be eval'ed did not compile (i.e. spots syntax errors). – i-blis Jul 24 '11 at 23:02
show 2 more comments
feedback

I am successfully accessing a gmail account (google apps account to be precise) using Mail::POP3Client

link|improve this answer
thanks.... looks like it might be connecting (no error msgs) but it doesn't output anything as per the first example code listed at cpan – CheeseConQueso Mar 2 '10 at 16:21
did you enable POP3 access in your gmail account? PROTIP: if you don't want to alter the state of your inbox, use the 'recent' tag in your uid: mail.google.com/support/bin/answer.py?hl=en&answer=47948 – coffeepac Mar 2 '10 at 16:53
yeah that's enabled – CheeseConQueso Mar 2 '10 at 17:06
Did you check the return $pop->Count() after connecting? -1 indicates an error, otherwise you're in busienss – hhunter Mar 5 '10 at 21:53
feedback

If you cannot access gmail through normal POP3 or IMAP either, then you have a configuration problem rather than a programming problem.

I fetch my mail from gmail (actually Google Apps, which uses the same interface), using configuration details described here: http://download.gna.org/hpr/fetchmail/FAQ/gmail-pop-howto.html

(This answer is far more appropriate for Super User though!)

link|improve this answer
feedback

You can tried with the following module

  Mail::Webmail::Gmail
link|improve this answer
This is what he did. But the module is most probably out-of-date. – i-blis Mar 3 '10 at 10:45
feedback

You can use the following code also

use warnings;
use strict;
use Mail::POP3Client;
use IO::Socket::SSL;
use CGI qw(:standard);
my $cgi = new CGI;
my $LOG ;
open $LOG , ">>filename" ;
my $username  = 'name@gmail.com';
my $password  = '*******' ;
 chomp($password);
my $mailhost  = 'pop.gmail.com';
my $port      = '995';

$cgi->header();

my $pop = new Mail::POP3Client(
USER     => $username,
PASSWORD => $password,
HOST     => $mailhost,
PORT     => $port,
USESSL   => 'true',
DEBUG     => 0,
);
if (($pop->Count()) < 1) {
exit;
}

print $pop->Count() . " messages found!:$!\n";

for(my $i = 1; $i <= $pop->Count(); $i++) {
 foreach($pop->Head($i)) {
 /^(From|Subject|Email):\s+/i && print $_, "\n";
 }

$pop->BodyToFile($LOG,$i);

}

$pop->Close();

exit;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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