1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 08:12:48 +01:00
imapsync/W/learn/imap_utf7

14 lines
181 B
Plaintext
Raw Normal View History

2012-09-12 03:50:53 +02:00
#!/usr/bin/perl
use Unicode::IMAPUtf7;
my $t = Unicode::IMAPUtf7->new();
while (<>) {
chomp ;
push( @result, sprintf( "%33s %s\n", $_, $t->decode($_) ) ) ;
}
print @result ;