mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 00:02:29 +01:00
15 lines
236 B
Perl
Executable File
15 lines
236 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
|
|
use Unicode::IMAPUtf7;
|
|
|
|
my $t = Unicode::IMAPUtf7->new();
|
|
|
|
while (<>) {
|
|
chomp ;
|
|
#push( @result, sprintf( "%33s %s\n", $_, $t->decode($_) ) ) ;
|
|
push( @result, sprintf( "%s\n", $t->decode($_) ) ) ;
|
|
}
|
|
|
|
print @result ;
|