imapsync/t/01_connect
Nick Bebout 0d91a1a20f 1.239
2011-03-12 02:44:35 +00:00

15 lines
298 B
Perl
Executable file

#!/usr/bin/perl -w
use Carp;
use Mail::IMAPClient;
$imap = Mail::IMAPClient->new(Debug => 1);
$imap->Debug(1);
$imap->Server('louloutte.dyndns.org');
$imap->connect() or croak "Error connecting @!";
$imap->User('MarkOv@est.belle');
$imap->Password('emhj91ly');
$imap->login();
$imap->logout();