source: ProjectBuilder/projects/md2mb/devel/md2mb/bin/md2mb.pl@ 1445

Last change on this file since 1445 was 1445, checked in by ebaudrez, 12 years ago

started using POD documentation

File size: 4.3 KB
Line 
1#!/usr/bin/perl -w
2
3=head1 NAME
4
5md2mb.pl - Import a maildir kmail environment into a thunderbird one
6
7=cut
8
9use strict;
10use File::Find;
11use File::Copy;
12use File::Basename;
13use File::Path;
14use File::Glob ':glob';
15use Getopt::Long;
16use Pod::Usage;
17
18# settings
19my $cmd="formail";
20# CHANGE AS YOU WISH
21my $oldroot = "/users/segolene/.Mail";
22my $newroot = "/users/segolene/.thunderbird/qk2f4dl6.default/Mail/pop.home.musique-ancienne.org/";
23# Is the newroot a file (1) or a dir (0)
24my $nrisfile = 0;
25my $debug = 0;
26# END CHANGE
27my $help = 0;
28my $man = 0;
29
30# parse command-line options
31GetOptions(
32 'help|h' => \$help,
33 'man|m' => \$man,
34 'verbose|v' => sub { $debug++ },
35) or pod2usage(2);
36pod2usage(1) if ($help);
37pod2usage(-exitstatus => 0, -verbose => 2) if ($man);
38
39print "DEBUG MODE, not doing anything, just printing\n" if ($debug);
40if ($debug) {
41 print "TARGET DIR: mkdir -p $newroot\n" if ((not -d "$newroot") && (not $nrisfile));
42 print "CMD: mkdir -p $newroot\n" if ((not -d "$newroot") && (not $nrisfile));
43} else {
44 mkpath("$newroot",0, 0755) if ((not -d "$newroot") && (not $nrisfile));
45}
46system("$cmd </dev/null >/dev/null 2>/dev/null") == 0 or die "cannot find formail on your \$PATH!\nTry installing procmail\nAborting";
47
48find(\&md2mb,($oldroot));
49
50if ((-z "$newroot/Inbox") || (! -e "$newroot/Inbox")) {
51 print "Renaming inbox into Inbox\n";
52 move("$newroot/inbox","$newroot/Inbox") if (-e "$newroot/inbox");
53}
54
55sub md2mb {
56
57if (-f $File::Find::name) {
58 if (($File::Find::name =~ /\.ids$/) ||
59 ($File::Find::name =~ /\.sorted$/) ||
60 ($File::Find::name =~ /\.index$/)) {
61 print "SKIP FILE: $File::Find::name\n" if ($debug);
62 return;
63 }
64}
65if (-d $File::Find::name) {
66 if (($File::Find::name =~ /\/cur$/) ||
67 ($File::Find::name =~ /\/new$/) ||
68 ($File::Find::name =~ /\/tmp$/)) {
69 print "SKIP DIR: $File::Find::name\n" if ($debug);
70 return;
71 }
72}
73my $destname = $File::Find::name;
74# Target name is under a different root dir
75$destname =~ s|^$oldroot||;
76# Target name is not under a .directory dir but under a .sdb one
77$destname =~ s|\.([^/]+)\.directory/|$1.sbd/|g;
78# Here we create the target dir and target name
79my $outputfile="$newroot/$destname";
80my $cdir = dirname("$outputfile");
81# Handle case where target file name is empty
82$outputfile="$newroot" if ($destname =~ /^\s*$/);
83# When we treat a dir, we will have to handle what it has below
84if (-d $File::Find::name) {
85 if ($debug) {
86 print "DIR SRC: $File::Find::name\n";
87 }
88 my @files = (bsd_glob("$File::Find::name/cur/*"),bsd_glob("$File::Find::name/new/*"));
89 if (@files) {
90 if ($debug) {
91 print "DIR ($File::Find::name) DIR TARGET: mkdir -p $cdir\n" if (not -d "$cdir");
92 } else {
93 mkpath("$cdir",0, 0755) if (not -d "$cdir");
94 }
95 }
96 foreach my $file (@files) {
97 next unless -f $file; # skip non-regular files
98 next unless -s $file; # skip empty files
99 next unless -r $file; # skip unreadable files
100 $file =~ s/'/'"'"'/g; # escape ' (single quote)
101 # NOTE! The output file must not contain single quotes (')!
102 my $run = "cat '$file' | $cmd >> '$outputfile'";
103 if ($debug) {
104 print "COPYING CONTENT maildir($file) to $outputfile\n";
105 print "CMD: $run\n";
106 } else {
107 print "Copying maildir content from $file to $outputfile\n";
108 system($run) == 0 or warn "cannot run \"$run\".";
109 }
110 }
111}
112if (-f $File::Find::name) {
113 if (($File::Find::name =~ /\/cur\//) ||
114 ($File::Find::name =~ /\/new\//) ||
115 ($File::Find::name =~ /\/tmp\//)) {
116 print "SKIP FILE: $File::Find::name\n" if ($debug);
117 return;
118 }
119 if ($debug) {
120 print "FILE ($File::Find::name) TARGET DIR: mkdir -p $cdir\n" if (not -d "$cdir");
121 print "CMD: cp $File::Find::name $cdir\n";
122 } else {
123 print "Copying mailbox content from $File::Find::name to $cdir\n";
124 mkpath("$cdir",0, 0755) if (not -d "$cdir");
125 copy($File::Find::name,$cdir);
126 }
127}
128}
129__END__
130
131=head1 SYNOPSIS
132
133md2mb.pl [options]
134
135 Options:
136 -help brief help message
137 -man full documentation
138
139=head1 OPTIONS
140
141=over 4
142
143=item B<-help>
144
145Print a brief help message and exits.
146
147=item B<-man>
148
149Prints the manual page and exits.
150
151=back
152
153=head1 DESCRIPTION
154
155B<md2mb.pl> will import a B<kmail> maildir environment, and transform it into a
156B<thunderbird> one.
157
158=head1 AUTHOR
159
160Bruno Cornec, http://brunocornec.wordpress.com
161
162=head1 LICENSE
163
164Released under the GPLv2 or the Artistic license at your will.
165
166=cut
Note: See TracBrowser for help on using the repository browser.