This commit is contained in:
Nick Bebout 2011-03-12 02:44:25 +00:00
parent c6afe6877b
commit d34bdb8bd4
5 changed files with 16 additions and 12 deletions

View file

@ -1,15 +1,19 @@
RCS file: RCS/imapsync,v RCS file: RCS/imapsync,v
Working file: imapsync Working file: imapsync
head: 1.166 head: 1.167
branch: branch:
locks: strict locks: strict
access list: access list:
symbolic names: symbolic names:
keyword substitution: kv keyword substitution: kv
total revisions: 166; selected revisions: 166 total revisions: 167; selected revisions: 167
description: description:
---------------------------- ----------------------------
revision 1.167
date: 2006/03/30 02:33:00; author: gilles; state: Exp; lines: +6 -6
SPLIT print in debug mode only.
----------------------------
revision 1.166 revision 1.166
date: 2006/03/30 02:22:39; author: gilles; state: Exp; lines: +30 -30 date: 2006/03/30 02:22:39; author: gilles; state: Exp; lines: +30 -30
Use of parse_headers() instead of parse_headers() Use of parse_headers() instead of parse_headers()

4
README
View file

@ -2,7 +2,7 @@ NAME
imapsync - IMAP synchronization, copy or migration tool. Synchronize imapsync - IMAP synchronization, copy or migration tool. Synchronize
mailboxes between two imap servers. Good at IMAP migration. mailboxes between two imap servers. Good at IMAP migration.
$Revision: 1.166 $ $Revision: 1.167 $
INSTALL INSTALL
imapsync works fine under any Unix OS. imapsync works fine under any Unix OS.
@ -287,5 +287,5 @@ AUTHOR
teaching free open and gratis softwares. Don't hesitate to pay him for teaching free open and gratis softwares. Don't hesitate to pay him for
that services. that services.
$Id: imapsync,v 1.166 2006/03/30 02:22:39 gilles Exp $ $Id: imapsync,v 1.167 2006/03/30 02:33:00 gilles Exp $

View file

@ -1 +1 @@
1.166 1.167

View file

@ -1,5 +1,5 @@
Project: imapsync Project: imapsync
Version: 1.164 Version: 1.166
Release-Focus: Major bugfixes Release-Focus: Major bugfixes
Hide: Y Hide: Y
Home-Page-URL: http://www.linux-france.org/prj/imapsync/ Home-Page-URL: http://www.linux-france.org/prj/imapsync/

View file

@ -6,7 +6,7 @@ imapsync - IMAP synchronization, copy or migration
tool. Synchronize mailboxes between two imap servers. Good tool. Synchronize mailboxes between two imap servers. Good
at IMAP migration. at IMAP migration.
$Revision: 1.166 $ $Revision: 1.167 $
=head1 INSTALL =head1 INSTALL
@ -337,7 +337,7 @@ Gilles LAMIRAL earn his living writing, installing,
configuring and teaching free open and gratis configuring and teaching free open and gratis
softwares. Don't hesitate to pay him for that services. softwares. Don't hesitate to pay him for that services.
$Id: imapsync,v 1.166 2006/03/30 02:22:39 gilles Exp $ $Id: imapsync,v 1.167 2006/03/30 02:33:00 gilles Exp $
=cut =cut
@ -392,7 +392,7 @@ my(
use vars qw ($opt_G); # missing code for this will be option. use vars qw ($opt_G); # missing code for this will be option.
$rcs = ' $Id: imapsync,v 1.166 2006/03/30 02:22:39 gilles Exp $ '; $rcs = ' $Id: imapsync,v 1.167 2006/03/30 02:33:00 gilles Exp $ ';
$rcs =~ m/,v (\d+\.\d+)/; $rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN"; $VERSION = ($1) ? $1 : "UNKNOWN";
@ -429,8 +429,8 @@ $error=0;
my $banner = join("", my $banner = join("",
'$RCSfile: imapsync,v $ ', '$RCSfile: imapsync,v $ ',
'$Revision: 1.166 $ ', '$Revision: 1.167 $ ',
'$Date: 2006/03/30 02:22:39 $ ', '$Date: 2006/03/30 02:33:00 $ ',
"\n", "\n",
"Mail::IMAPClient version used here is ", "Mail::IMAPClient version used here is ",
$VERSION_IMAPClient,"\n" $VERSION_IMAPClient,"\n"
@ -1543,7 +1543,7 @@ sub parse_headers2 {
my $headers = {}; # hash from message ids to header hash my $headers = {}; # hash from message ids to header hash
my $split = $self->Split() || scalar(@$msgspec_all); my $split = $self->Split() || scalar(@$msgspec_all);
while(my @msgs = splice(@$msgspec_all, 0, $split)) { while(my @msgs = splice(@$msgspec_all, 0, $split)) {
print "SPLIT: @msgs\n"; $debug and print "SPLIT: @msgs\n";
my $msgspec = \@msgs; my $msgspec = \@msgs;
# Make $msg a comma separated list, of messages we want # Make $msg a comma separated list, of messages we want