Skip Menu |

This queue is for tickets about the GMail-IMAPD CPAN distribution.

Report information
The Basics
Id: 22058
Status: open
Priority: 0/
Queue: GMail-IMAPD

People
Owner: Nobody in particular
Requestors: freedenizen [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Gmail-IMAPD problem
Date: Thu, 12 Oct 2006 10:27:05 -0700
To: bug-GMail-IMAPD [...] rt.cpan.org
From: Asher <freedenizen [...] gmail.com>
I'm not sure if you are working on this any more but maybe you can help me out with this. I'm getting the following error: cmd_LOGIN: gmail error: Error: Could not login with those credentials Additionally, HTTP error: 404 Not Found I modified the code a little bit at line 135: $self->{_err_str} .= " Additionally, HTTP error: " . $res->status_line . "\n" .$res->content() . "\n"; so I could see the page it is pulling. From what I see it is pulling the "the service is not available page" I have attached the output of $res_content() to this email. I think the page it is trying to goto is: https://www.google.com/accounts/ServiceLoginBoxAuth?rm=false&continue=http://mail.google.com/mail/ and that seems to work fine in a webbrowser on the machine. Any help you could give me in troubleshooting would be very helpful. Thank you, Asher

Message body is not shown because sender requested not to inline it.

From: sebastian.holmqvist [...] gmail.com
On Thu Oct 12 13:27:56 2006, freedenizen@gmail.com wrote: Show quoted text
> I'm not sure if you are working on this any more but maybe you can > help me out with this. > > I'm getting the following error: > cmd_LOGIN: gmail error: Error: Could not login with those credentials > Additionally, HTTP error: 404 Not Found > > I modified the code a little bit at line 135: > $self->{_err_str} .= " Additionally, HTTP error: " . > $res->status_line . "\n" .$res->content() . "\n"; > > so I could see the page it is pulling. > > From what I see it is pulling the "the service is not available page" > I have attached the output of $res_content() to this email. > > I think the page it is trying to goto is: >
https://www.google.com/accounts/ServiceLoginBoxAuth?rm=false&continue=http://mail.google.com/mail/ Show quoted text
> > and that seems to work fine in a webbrowser on the machine. Any help > you could give me in troubleshooting would be very helpful. > Thank you, > Asher
Hey there! I had the same problem as you and found that the module Mail::Webmail::Gmail.pm had been updated recently and because krs have included that file instead of depending on it the changes have not reached this module. The solution is to copy the Mail::Webmail::Gmail.pm to Gmail::IMAPD::Gmail.pm and it should work just fine. Does so for me. Don't forget to change the first line to 'package GMail::IMAPD::Gmail;'. Good luck!