doonyakka has asked for the wisdom of the Perl Monks concerning the following question:
I'm trying to write a very simple script (see relevant code below) using WWW::Hotmail, but every time I try to run it, I get the following error: "The getpwuid function is unimplemented at perl/site/lib/Mail/Audit.pm".
Any ideas on how to fix this would be much appreciated.
Cheers,
doonyakka
PS. I've installed Mail::Audit
#!/usr/bin/perl use strict; use WWW::Hotmail; my $browser = new WWW::Hotmail; $browser->login("foo", "bar"); for ($browser->messages) { $_->retrieve->accept; $_->delete; } exit(0);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: WWW::Hotmail problem
by ysth (Canon) on Jan 11, 2004 at 22:22 UTC | |
by doonyakka (Beadle) on Jan 13, 2004 at 22:33 UTC | |
|
Re: WWW::Hotmail problem
by tachyon (Chancellor) on Jan 11, 2004 at 19:12 UTC | |
by crabbdean (Pilgrim) on Jan 11, 2004 at 20:54 UTC | |
by jonadab (Parson) on Jan 11, 2004 at 21:34 UTC |