From: | "Morel, Robert" <RMorel [...] superiorconsultant.com> |
To: | bug-Mail-IMAPClient [...] rt.cpan.org |
Subject: | Bug or Code? |
Date: | Thu, 11 Mar 2004 17:31:18 -0500 |
I've created a module that uses Mail::IMAPClient... However, when I run the
following code:
$imap = Mail::IMAPClient->new(
Server => $arg{'ip'},
User => $arg{'username'},
Password=> $arg{'password'},
) || return 0;
I get an error:
Mail::IMAPClient not using Fast_IO; not available on this platform at
exchange.pm line 34
This is the top of my script:
package exchange;
use strict;
use Net::smtp_delivery;
use Mail::IMAPClient;
Any idea what the problem is? My IMAP version is 2.2.9.
Robert Morel