in reply to WWW::Hotmail problem

Put at the beginning of your script (before using Mail::Audit or any module that uses it):
BEGIN { *CORE::GLOBAL::getpwuid = sub { wantarray ? (undef,undef,undef,undef,undef,undef,undef, "c:/somehomedir") : "someusername" }; }
and it should work. (Don't have Mail::Audit installed on Win32 to try.)

Update: added missing { after BEGIN (Thanks, Liz)

Replies are listed 'Best First'.
Re: Re: WWW::Hotmail problem
by doonyakka (Beadle) on Jan 13, 2004 at 22:33 UTC

    Thanks, it looks promising. I'll give it a go and let you know what happens.

    I'm away for a couple more days but I'll try it as soon as I get back.

    Cheers.