in reply to Re^3: How to Fetch Gmail
in thread How to Fetch Gmail
use warnings; use strict; use Mail::Webmail::Gmail; my $gmail = Mail::Webmail::Gmail->new( username => '', password => '', proxy_name => 'localho +st:3128' ); my @labels = $gmail->get_labels(); print "Number of labels returned: ".scalar (@labels)."\n"; foreach my $label (@labels) { print "Label: $label\n"; }
From my test above, it would appear that Mail::Webmail::Gmail->new() completes without error even with a known bad password.
2011-01-19 09:29 GMT - restored (in part) after discussion with ww
|
|---|