mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-05 12:17:16 +02:00
15 lines
298 B
Perl
Executable file
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();
|
|
|
|
|