This commit is contained in:
Nick Bebout 2011-03-12 02:44:13 +00:00
parent f6f2c48fa4
commit d6b3be8088
7 changed files with 64 additions and 17 deletions

View file

@ -6,7 +6,7 @@ imapsync - IMAP synchronization, copy or migration
tool. Synchronize mailboxes between two imap servers. Good
at IMAP migration.
$Revision: 1.123 $
$Revision: 1.124 $
=head1 INSTALL
@ -184,7 +184,8 @@ Report any bugs to the author: lamiral@linux-france.org
=head1 IMAP SERVERS
Success stories reported (softwares in alphabetic order) :
Success stories reported with the following imap servers
(softwares inames are in alphabetic order) :
- BincImap 1.2.3
- CommunicatePro server (Redhat 8.0)
@ -194,7 +195,7 @@ Success stories reported (softwares in alphabetic order) :
2.2.1, 2.2.2-BETA, 2.2.10
- DBMail 1.2.1
- Dovecot 0.99.10.4
- Domino (Notes) 6.5, 5.0.6
- Domino (Notes) 6.5, 5.0.6, 5.0.7
- iPlanet Messaging server 4.15, 5.1
- IMail 7.15 (Ipswitch/Win2003), 8.12
- MDaemon 7.0.1
@ -203,6 +204,7 @@ Success stories reported (softwares in alphabetic order) :
- Netscape Messaging Server 4.15 Patch 7
- OpenWave
- Qualcomm Worldmail (NT)
- Samsung Contact IMAP server 8.5.0
- SunONE Messaging server 5.2, 6.0 (SUN JES - Java Enterprise System)
- UW-imap servers (imap-2000b) rijkkramer IMAP4rev1 2000.287
(RedHat uses UW like 2003.338rh)
@ -286,7 +288,7 @@ Gilles LAMIRAL earn his living writing, installing,
configuring and teaching free open and gratis
softwares. Don't hesitate to pay him for that services.
$Id: imapsync,v 1.123 2005/03/19 04:25:46 gilles Exp $
$Id: imapsync,v 1.124 2005/04/13 11:37:38 gilles Exp gilles $
=cut
@ -329,7 +331,7 @@ my(
use vars qw ($opt_G); # missing code for this will be option.
$rcs = ' $Id: imapsync,v 1.123 2005/03/19 04:25:46 gilles Exp $ ';
$rcs = ' $Id: imapsync,v 1.124 2005/04/13 11:37:38 gilles Exp gilles $ ';
$rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN";
@ -366,8 +368,8 @@ $error=0;
my $banner = join("",
'$RCSfile: imapsync,v $ ',
'$Revision: 1.123 $ ',
'$Date: 2005/03/19 04:25:46 $ ',
'$Revision: 1.124 $ ',
'$Date: 2005/04/13 11:37:38 $ ',
"\n",
"Mail::IMAPClient version used here is ",
$VERSION_IMAPClient, " auth md5 : $md5_supported",