GMail::IMAPD is an IMAP4 gateway to Google's webmail service.
SYNOPSIS
# Start an IMAP-to-Gmail daemon on port 1143
use GMail::IMAPD;
my $daemon=GMail::IMAPD->new(LocalPort=>1143,
LogFile=>'gmail_imapd.log',
Debug=>1);
$daemon->run();
# Or if you prefer to use your own server socket,
# you can do something like:
my $i2g=GMail::IMAPD->new(LogFile=>'imapd.log');
for(;;){
my $s=someserver();
$i2g->procimap($s);
}
This module allows users to access their Gmail account with an IMAP client by running a server which accepts IMAP connections.
Product's homepage
Requirements:
· Perl