This commit is contained in:
Nick Bebout 2011-03-12 02:43:51 +00:00
parent 8d7bb14b19
commit b6ef68ce6f
4 changed files with 40 additions and 12 deletions

View file

@ -1,15 +1,24 @@
RCS file: RCS/imapsync,v
Working file: imapsync
head: 1.72
head: 1.74
branch:
locks: strict
gilles: 1.74
access list:
symbolic names:
keyword substitution: kv
total revisions: 72; selected revisions: 72
total revisions: 74; selected revisions: 74
description:
----------------------------
revision 1.74 locked by: gilles;
date: 2004/02/12 03:11:14; author: gilles; state: Exp; lines: +11 -6
Updated SIMILAR SOFTWARES
----------------------------
revision 1.73
date: 2004/02/12 00:12:46; author: gilles; state: Exp; lines: +11 -5
www.imap.org
----------------------------
revision 1.72
date: 2004/02/09 15:42:33; author: gilles; state: Exp; lines: +39 -9
Better MD5 handling

14
README
View file

@ -2,7 +2,7 @@ NAME
imapsync - IMAP sync or copy tool. Synchronize mailboxes between two
imap servers.
$Revision: 1.72 $
$Revision: 1.74 $
INSTALL
imapsync works fine under any Unix OS.
@ -161,7 +161,7 @@ IMAP SERVERS
You can use option --justconnect to get those lines.
Rate imapsync : http://freshmeat.net/projects/imapsync/
And please rate imapsync at http://freshmeat.net/projects/imapsync/
HUGE MIGRATION
Have a special attention on options --subscribed --subscribe --delete
@ -184,14 +184,22 @@ HUGE MIGRATION
Welcome in shell programming !
Hacking
Feel free to hack imapsync as the GPL Licence permits it.
Links
Entries for imapsync: http://www.imap.org/products/showall.php
SIMILAR SOFTWARES
offlineimap : http://gopher.quux.org:70/devel/offlineimap/
mailsync : http://mailsync.sourceforge.net/
imapxfer : http://www.washington.edu/imap/
part of the imap-utils from UW.
imaprepl : http://www.bl0rg.net/software/
http://freshmeat.net/projects/imap-repl/
imap_migrate: http://freshmeat.net/projects/imapmigration/
pop2imap : http://www.linux-france.org/prj/pop2imap/
Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.72 2004/02/09 15:42:33 gilles Exp $
$Id: imapsync,v 1.74 2004/02/12 03:11:14 gilles Exp gilles $

View file

@ -1 +1 @@
1.72
1.74

View file

@ -4,7 +4,7 @@
imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imap servers.
$Revision: 1.72 $
$Revision: 1.74 $
=head1 INSTALL
@ -183,7 +183,7 @@ are useful to know the softwares. Example:
You can use option --justconnect to get those lines.
Rate imapsync : http://freshmeat.net/projects/imapsync/
And please rate imapsync at http://freshmeat.net/projects/imapsync/
=head1 HUGE MIGRATION
@ -217,6 +217,12 @@ Welcome in shell programming !
=head1 Hacking
Feel free to hack imapsync as the GPL Licence permits it.
=head1 Links
Entries for imapsync:
http://www.imap.org/products/showall.php
=head1 SIMILAR SOFTWARES
@ -225,11 +231,14 @@ Welcome in shell programming !
mailsync : http://mailsync.sourceforge.net/
imapxfer : http://www.washington.edu/imap/
part of the imap-utils from UW.
imaprepl : http://www.bl0rg.net/software/
http://freshmeat.net/projects/imap-repl/
imap_migrate: http://freshmeat.net/projects/imapmigration/
pop2imap : http://www.linux-france.org/prj/pop2imap/
Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.72 2004/02/09 15:42:33 gilles Exp $
$Id: imapsync,v 1.74 2004/02/12 03:11:14 gilles Exp gilles $
=cut
@ -264,7 +273,7 @@ my(
use vars qw ($opt_G); # missing code for this will be option.
$rcs = ' $Id: imapsync,v 1.72 2004/02/09 15:42:33 gilles Exp $ ';
$rcs = ' $Id: imapsync,v 1.74 2004/02/12 03:11:14 gilles Exp gilles $ ';
$rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN";
@ -299,8 +308,8 @@ $error=0;
my $banner = join("",
'$RCSfile: imapsync,v $ ',
'$Revision: 1.72 $ ',
'$Date: 2004/02/09 15:42:33 $ ',
'$Revision: 1.74 $ ',
'$Date: 2004/02/12 03:11:14 $ ',
"\n",
"Mail::IMAPClient version used here is ",
$VERSION_IMAPClient, " auth md5 : $md5_supported",
@ -666,6 +675,8 @@ sub stats {
print "Total bytes skipped : $mess_size_total_skipped\n";
print "Total bytes error : $mess_size_total_error\n";
print "Detected $error errors\n";
print "Please, rate imapsync at http://freshmeat.net/projects/imapsync/\n";
}