This commit is contained in:
Nick Bebout 2011-03-12 02:43:51 +00:00
parent b6ef68ce6f
commit 6549376d24
4 changed files with 18 additions and 14 deletions

View file

@ -1,17 +1,21 @@
RCS file: RCS/imapsync,v RCS file: RCS/imapsync,v
Working file: imapsync Working file: imapsync
head: 1.74 head: 1.75
branch: branch:
locks: strict locks: strict
gilles: 1.74 gilles: 1.75
access list: access list:
symbolic names: symbolic names:
keyword substitution: kv keyword substitution: kv
total revisions: 74; selected revisions: 74 total revisions: 75; selected revisions: 75
description: description:
---------------------------- ----------------------------
revision 1.74 locked by: gilles; revision 1.75 locked by: gilles;
date: 2004/02/18 14:27:40; author: gilles; state: Exp; lines: +6 -6
dovecot version
----------------------------
revision 1.74
date: 2004/02/12 03:11:14; author: gilles; state: Exp; lines: +11 -6 date: 2004/02/12 03:11:14; author: gilles; state: Exp; lines: +11 -6
Updated SIMILAR SOFTWARES Updated SIMILAR SOFTWARES
---------------------------- ----------------------------

6
README
View file

@ -2,7 +2,7 @@ NAME
imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imapsync - IMAP sync or copy tool. Synchronize mailboxes between two
imap servers. imap servers.
$Revision: 1.74 $ $Revision: 1.75 $
INSTALL INSTALL
imapsync works fine under any Unix OS. imapsync works fine under any Unix OS.
@ -143,7 +143,7 @@ IMAP SERVERS
- Critical Path (7.0.020) - Critical Path (7.0.020)
- Cyrus IMAP 1.5, 1.6, 2.1, 2.1.15, 2.2.1, Cyrus 2.2.2-BETA - Cyrus IMAP 1.5, 1.6, 2.1, 2.1.15, 2.2.1, Cyrus 2.2.2-BETA
- DBMail 1.2.1 - DBMail 1.2.1
- dovecot ?.?? - Dovecot 0.99.10.4
- iPlanet Messaging server 4.15 - iPlanet Messaging server 4.15
- Netscape Mail Server 3.6 (Wintel !) - Netscape Mail Server 3.6 (Wintel !)
- SunONE Messaging server 5.2, 6.0 (SUN JES - Java Enterprise System) - SunONE Messaging server 5.2, 6.0 (SUN JES - Java Enterprise System)
@ -201,5 +201,5 @@ SIMILAR SOFTWARES
Feedback (good or bad) will be always welcome. Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.74 2004/02/12 03:11:14 gilles Exp gilles $ $Id: imapsync,v 1.75 2004/02/18 14:27:40 gilles Exp gilles $

View file

@ -1 +1 @@
1.74 1.75

View file

@ -4,7 +4,7 @@
imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imap servers. imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imap servers.
$Revision: 1.74 $ $Revision: 1.75 $
=head1 INSTALL =head1 INSTALL
@ -164,7 +164,7 @@ Success stories reported (softwares in alphabetic order) :
- Critical Path (7.0.020) - Critical Path (7.0.020)
- Cyrus IMAP 1.5, 1.6, 2.1, 2.1.15, 2.2.1, Cyrus 2.2.2-BETA - Cyrus IMAP 1.5, 1.6, 2.1, 2.1.15, 2.2.1, Cyrus 2.2.2-BETA
- DBMail 1.2.1 - DBMail 1.2.1
- dovecot ?.?? - Dovecot 0.99.10.4
- iPlanet Messaging server 4.15 - iPlanet Messaging server 4.15
- Netscape Mail Server 3.6 (Wintel !) - Netscape Mail Server 3.6 (Wintel !)
- SunONE Messaging server 5.2, 6.0 (SUN JES - Java Enterprise System) - SunONE Messaging server 5.2, 6.0 (SUN JES - Java Enterprise System)
@ -238,7 +238,7 @@ Entries for imapsync:
Feedback (good or bad) will be always welcome. Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.74 2004/02/12 03:11:14 gilles Exp gilles $ $Id: imapsync,v 1.75 2004/02/18 14:27:40 gilles Exp gilles $
=cut =cut
@ -273,7 +273,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.74 2004/02/12 03:11:14 gilles Exp gilles $ '; $rcs = ' $Id: imapsync,v 1.75 2004/02/18 14:27:40 gilles Exp gilles $ ';
$rcs =~ m/,v (\d+\.\d+)/; $rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN"; $VERSION = ($1) ? $1 : "UNKNOWN";
@ -308,8 +308,8 @@ $error=0;
my $banner = join("", my $banner = join("",
'$RCSfile: imapsync,v $ ', '$RCSfile: imapsync,v $ ',
'$Revision: 1.74 $ ', '$Revision: 1.75 $ ',
'$Date: 2004/02/12 03:11:14 $ ', '$Date: 2004/02/18 14:27:40 $ ',
"\n", "\n",
"Mail::IMAPClient version used here is ", "Mail::IMAPClient version used here is ",
$VERSION_IMAPClient, " auth md5 : $md5_supported", $VERSION_IMAPClient, " auth md5 : $md5_supported",