mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-11 23:24:30 +02:00
10 lines
179 B
Perl
Executable file
10 lines
179 B
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
use strict ;
|
|
use warnings ;
|
|
use Mail::IMAPClient ;
|
|
|
|
my $imap = Mail::IMAPClient->new( ) ;
|
|
$imap->connect( ) ;
|
|
print "I hope I'm not dead but...\n" ;
|
|
|