diff --git a/CREDITS b/CREDITS index 9ff10aa..885c7b1 100644 --- a/CREDITS +++ b/CREDITS @@ -2,6 +2,9 @@ I thank very much all of these people. +Doug Gorton +Fixed bug about variable mess_size_total_skipped. + Jonathan Doughty Found problem aboutthe md5 file on linux-france.org diff --git a/ChangeLog b/ChangeLog index 2c31d5c..0299047 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,15 +1,20 @@ RCS file: RCS/imapsync,v Working file: imapsync -head: 1.178 +head: 1.179 branch: locks: strict access list: symbolic names: keyword substitution: kv -total revisions: 178; selected revisions: 178 +total revisions: 179; selected revisions: 179 description: ---------------------------- +revision 1.179 +date: 2006/07/18 01:57:31; author: gilles; state: Exp; lines: +7 -6 +Fixed bug about variable mess_size_total_skipped. +Thanks to Doug Gorton +---------------------------- revision 1.178 date: 2006/07/02 23:26:07; author: gilles; state: Exp; lines: +10 -8 Added Mailsite success diff --git a/README b/README index d71b4dc..9a701e0 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME Synchronise mailboxes between two imap servers. Good at IMAP migration. More than 25 different IMAP server softwares supported with success. - $Revision: 1.178 $ + $Revision: 1.179 $ INSTALL imapsync works fine under any Unix OS. @@ -290,5 +290,5 @@ AUTHOR teaching free open and gratis softwares. Don't hesitate to pay him for that services. - $Id: imapsync,v 1.178 2006/07/02 23:26:07 gilles Exp $ + $Id: imapsync,v 1.179 2006/07/18 01:57:31 gilles Exp $ diff --git a/VERSION b/VERSION index 4dbc0e7..b9adc5e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.178 +1.179 diff --git a/freshmeat_submition.inp b/freshmeat_submition.inp index ba74427..2713359 100644 --- a/freshmeat_submition.inp +++ b/freshmeat_submition.inp @@ -1,6 +1,7 @@ # RELEASE_FOCUS="Minor bugfixes" -TEXT_BODY="Syntax cleanup" +#TEXT_BODY="Syntax cleanup" +TEXT_BODY="Fixed a bug to calculate skipped size" diff --git a/imapsync b/imapsync index 40861bf..e560f1b 100755 --- a/imapsync +++ b/imapsync @@ -7,7 +7,7 @@ tool. Synchronise mailboxes between two imap servers. Good at IMAP migration. More than 25 different IMAP server softwares supported with success. -$Revision: 1.178 $ +$Revision: 1.179 $ =head1 INSTALL @@ -340,7 +340,7 @@ Gilles LAMIRAL earn his living writing, installing, configuring and teaching free open and gratis softwares. Don't hesitate to pay him for that services. -$Id: imapsync,v 1.178 2006/07/02 23:26:07 gilles Exp $ +$Id: imapsync,v 1.179 2006/07/18 01:57:31 gilles Exp $ =cut @@ -397,7 +397,7 @@ my( use vars qw ($opt_G); # missing code for this will be option. -$rcs = ' $Id: imapsync,v 1.178 2006/07/02 23:26:07 gilles Exp $ '; +$rcs = ' $Id: imapsync,v 1.179 2006/07/18 01:57:31 gilles Exp $ '; $rcs =~ m/,v (\d+\.\d+)/; $VERSION = ($1) ? $1 : "UNKNOWN"; @@ -434,8 +434,8 @@ $error=0; my $banner = join("", '$RCSfile: imapsync,v $ ', - '$Revision: 1.178 $ ', - '$Date: 2006/07/02 23:26:07 $ ', + '$Revision: 1.179 $ ', + '$Date: 2006/07/18 01:57:31 $ ', "\n", "Mail::IMAPClient version used here is ", $VERSION_IMAPClient,"\n" @@ -1025,7 +1025,8 @@ FOLDER: foreach my $f_fold (@f_folders) { if (defined $maxsize and $f_size > $maxsize) { print "+ Skipping msg #$f_msg:$f_size in folder $f_fold (exceeds maxsize limit $maxsize bytes)\n"; - $mess_size_total_skipped += $f_msg; + $mess_size_total_skipped += $f_size; + $mess_skipped += 1; next MESS; } $debug and print "+ key $m_id #$f_msg\n";