This commit is contained in:
Nick Bebout 2011-03-12 02:43:46 +00:00
parent bf303b97aa
commit fc86fe47ec
5 changed files with 19 additions and 13 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.28 head: 1.29
branch: branch:
locks: strict locks: strict
access list: access list:
symbolic names: symbolic names:
keyword substitution: kv keyword substitution: kv
total revisions: 28; selected revisions: 28 total revisions: 29; selected revisions: 29
description: description:
---------------------------- ----------------------------
revision 1.29
date: 2003/08/24 02:01:28; author: gilles; state: Exp; lines: +6 -4
Updated doc about fixed flags first time bug.
----------------------------
revision 1.28 revision 1.28
date: 2003/08/24 01:55:25; author: gilles; state: Exp; lines: +8 -30 date: 2003/08/24 01:55:25; author: gilles; state: Exp; lines: +8 -30
Set the flags using append_strings() instead of store() Set the flags using append_strings() instead of store()

6
README
View file

@ -1,7 +1,7 @@
NAME NAME
imapsync - synchronize mailboxes between two imap servers. imapsync - synchronize mailboxes between two imap servers.
$Revision: 1.28 $ $Revision: 1.29 $
INSTALL INSTALL
Get imapsync at http://www.linux-france.org/prj/imapsync/dist/ Get imapsync at http://www.linux-france.org/prj/imapsync/dist/
@ -97,6 +97,8 @@ BUGS
Flags : with some IMAP servers the flags are not very well copied the Flags : with some IMAP servers the flags are not very well copied the
first time. Run imapsync twice if you want the flags set correctly. first time. Run imapsync twice if you want the flags set correctly.
(fixed since 1.28 release but wait for a time before removing those
lines)
Report any bugs to the author: lamiral@linux-france.org Report any bugs to the author: lamiral@linux-france.org
@ -124,5 +126,5 @@ SIMILAR SOFTWARES
Feedback (good or bad) will be always welcome. Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.28 2003/08/24 01:55:25 gilles Exp $ $Id: imapsync,v 1.29 2003/08/24 02:01:28 gilles Exp $

6
TODO
View file

@ -1,3 +1,5 @@
TODO file for imapsync
----------------------
Add SASL support MD5 : DIGEST-MD5 and CRAM-MD5 Add SASL support MD5 : DIGEST-MD5 and CRAM-MD5
see authenticate in IMAPClient.pm see authenticate in IMAPClient.pm
@ -5,9 +7,5 @@ Test the new Mail::IMAPClient (2.1.4 -> 2.2.8 or sup)
Update the list of tested IMAP servers (successes and failures). Update the list of tested IMAP servers (successes and failures).
Update documentation about setting flags.
Make setting flags works the FIRST time.
-> Use append_string instead of append
Add a CREDITS file. Add a CREDITS file.

View file

@ -1 +1 @@
1.28 1.29

View file

@ -4,7 +4,7 @@
imapsync - synchronize mailboxes between two imap servers. imapsync - synchronize mailboxes between two imap servers.
$Revision: 1.28 $ $Revision: 1.29 $
=head1 INSTALL =head1 INSTALL
@ -115,6 +115,8 @@ No known serious bug.
Flags : with some IMAP servers the flags are not very well copied the Flags : with some IMAP servers the flags are not very well copied the
first time. Run imapsync twice if you want the flags set correctly. first time. Run imapsync twice if you want the flags set correctly.
(fixed since 1.28 release but wait for a time before removing those
lines)
Report any bugs to the author: lamiral@linux-france.org Report any bugs to the author: lamiral@linux-france.org
@ -144,7 +146,7 @@ Rate imapsync : http://freshmeat.net/projects/imapsync/
Feedback (good or bad) will be always welcome. Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.28 2003/08/24 01:55:25 gilles Exp $ $Id: imapsync,v 1.29 2003/08/24 02:01:28 gilles Exp $
=cut =cut
@ -167,12 +169,12 @@ 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.28 2003/08/24 01:55:25 gilles Exp $ '; $rcs = ' $Id: imapsync,v 1.29 2003/08/24 02:01:28 gilles Exp $ ';
$rcs =~ m/,v (\d+\.\d+)/; $rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN"; $VERSION = ($1) ? $1 : "UNKNOWN";
$error=0; $error=0;
my $banner = '$RCSfile: imapsync,v $ ' . '$Revision: 1.28 $ ' . '$Date: 2003/08/24 01:55:25 $ ' . "\n"; my $banner = '$RCSfile: imapsync,v $ ' . '$Revision: 1.29 $ ' . '$Date: 2003/08/24 02:01:28 $ ' . "\n";
get_options(); get_options();