Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
My function call looks like this...
my $mailbox = $conn->getMailboxAvailablity (
DOMAIN => $UserDomainName
MAILBOX_LIST => $UserLoginName)
Regardless of what the function looks like, it's returning HASH(0x222b4c) instead of a "T" or an "F" like I expect. Does anybody know why? Is that the right way to return a string value to my $mailbox variable?
Back to
Seekers of Perl Wisdom