diff --git a/CREDITS b/CREDITS new file mode 100644 index 0000000..7ee41ff --- /dev/null +++ b/CREDITS @@ -0,0 +1,4 @@ + + +Eric Yung (Suggested --sep1 option) + diff --git a/ChangeLog b/ChangeLog index b58b1b4..f439671 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,15 +1,20 @@ RCS file: RCS/imapsync,v Working file: imapsync -head: 1.43 +head: 1.44 branch: locks: strict access list: symbolic names: keyword substitution: kv -total revisions: 43; selected revisions: 43 +total revisions: 44; selected revisions: 44 description: ---------------------------- +revision 1.44 +date: 2003/11/11 18:01:49; author: gilles; state: Exp; lines: +5 -5 +Fixed get_separator call bug for "to" server. +Thanks Eric Yung. +---------------------------- revision 1.43 date: 2003/11/11 02:18:45; author: gilles; state: Exp; lines: +35 -8 Added --sep1 and --sep2 options in case NAMESPACE can not be diff --git a/README b/README index 820cadc..8d3f91d 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ NAME imapsync - synchronize mailboxes between two imap servers. - $Revision: 1.43 $ + $Revision: 1.44 $ INSTALL Get imapsync at http://www.linux-france.org/prj/imapsync/dist/ @@ -136,5 +136,5 @@ SIMILAR SOFTWARES Feedback (good or bad) will be always welcome. - $Id: imapsync,v 1.43 2003/11/11 02:18:45 gilles Exp $ + $Id: imapsync,v 1.44 2003/11/11 18:01:49 gilles Exp $ diff --git a/VERSION b/VERSION index d9d7ef5..f42aade 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.43 +1.44 diff --git a/imapsync b/imapsync index bcf2105..efc7840 100755 --- a/imapsync +++ b/imapsync @@ -4,7 +4,7 @@ imapsync - synchronize mailboxes between two imap servers. -$Revision: 1.43 $ +$Revision: 1.44 $ =head1 INSTALL @@ -157,7 +157,7 @@ Rate imapsync : http://freshmeat.net/projects/imapsync/ Feedback (good or bad) will be always welcome. -$Id: imapsync,v 1.43 2003/11/11 02:18:45 gilles Exp $ +$Id: imapsync,v 1.44 2003/11/11 18:01:49 gilles Exp $ =cut @@ -182,12 +182,12 @@ my( use vars qw ($opt_G); # missing code for this will be option. -$rcs = ' $Id: imapsync,v 1.43 2003/11/11 02:18:45 gilles Exp $ '; +$rcs = ' $Id: imapsync,v 1.44 2003/11/11 18:01:49 gilles Exp $ '; $rcs =~ m/,v (\d+\.\d+)/; $VERSION = ($1) ? $1 : "UNKNOWN"; $error=0; -my $banner = '$RCSfile: imapsync,v $ ' . '$Revision: 1.43 $ ' . '$Date: 2003/11/11 02:18:45 $ ' . "\n"; +my $banner = '$RCSfile: imapsync,v $ ' . '$Revision: 1.44 $ ' . '$Date: 2003/11/11 18:01:49 $ ' . "\n"; get_options(); @@ -254,7 +254,7 @@ my($f_sep,$t_sep); # what are the private folders separators for each server ? $f_sep = get_separator($from, $sep1, "--sep1"); -$t_sep = get_separator($from, $sep2, "--sep2"); +$t_sep = get_separator($to, $sep2, "--sep2"); sub get_separator { my($imap, $sep_in, $sep_opt) = @_;