1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
This commit is contained in:
Nick Bebout 2011-03-12 02:43:51 +00:00
parent 6549376d24
commit 7a8b6c8464
5 changed files with 27 additions and 14 deletions

View File

@ -1,4 +1,7 @@
Wim Kerkhoff
Gave infos about mailutil.
Holger Mauermann
Bug about missing "AUTH=CRAM-MD5" (also copy-paste mistake in login_imap)

View File

@ -1,17 +1,21 @@
RCS file: RCS/imapsync,v
Working file: imapsync
head: 1.75
head: 1.76
branch:
locks: strict
gilles: 1.75
gilles: 1.76
access list:
symbolic names:
keyword substitution: kv
total revisions: 75; selected revisions: 75
total revisions: 76; selected revisions: 76
description:
----------------------------
revision 1.75 locked by: gilles;
revision 1.76 locked by: gilles;
date: 2004/02/18 21:34:46; author: gilles; state: Exp; lines: +9 -6
Added mailutil ref
----------------------------
revision 1.75
date: 2004/02/18 14:27:40; author: gilles; state: Exp; lines: +6 -6
dovecot version
----------------------------

9
README
View File

@ -2,7 +2,7 @@ NAME
imapsync - IMAP sync or copy tool. Synchronize mailboxes between two
imap servers.
$Revision: 1.75 $
$Revision: 1.76 $
INSTALL
imapsync works fine under any Unix OS.
@ -141,7 +141,7 @@ IMAP SERVERS
- CommunicatePro server (Redhat 8.0)
- Courier IMAP 1.5.1, 2.2.0, 2.1.1
- 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.1.16, 2.2.1, Cyrus 2.2.2-BETA
- DBMail 1.2.1
- Dovecot 0.99.10.4
- iPlanet Messaging server 4.15
@ -194,6 +194,9 @@ SIMILAR SOFTWARES
mailsync : http://mailsync.sourceforge.net/
imapxfer : http://www.washington.edu/imap/
part of the imap-utils from UW.
mailutil : replace imapxfer in
part of the imap-utils from UW.
http://www.gsp.com/cgi-bin/man.cgi?topic=mailutil
imaprepl : http://www.bl0rg.net/software/
http://freshmeat.net/projects/imap-repl/
imap_migrate: http://freshmeat.net/projects/imapmigration/
@ -201,5 +204,5 @@ SIMILAR SOFTWARES
Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.75 2004/02/18 14:27:40 gilles Exp gilles $
$Id: imapsync,v 1.76 2004/02/18 21:34:46 gilles Exp gilles $

View File

@ -1 +1 @@
1.75
1.76

View File

@ -4,7 +4,7 @@
imapsync - IMAP sync or copy tool. Synchronize mailboxes between two imap servers.
$Revision: 1.75 $
$Revision: 1.76 $
=head1 INSTALL
@ -162,7 +162,7 @@ Success stories reported (softwares in alphabetic order) :
- CommunicatePro server (Redhat 8.0)
- Courier IMAP 1.5.1, 2.2.0, 2.1.1
- 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.1.16, 2.2.1, Cyrus 2.2.2-BETA
- DBMail 1.2.1
- Dovecot 0.99.10.4
- iPlanet Messaging server 4.15
@ -231,6 +231,9 @@ Entries for imapsync:
mailsync : http://mailsync.sourceforge.net/
imapxfer : http://www.washington.edu/imap/
part of the imap-utils from UW.
mailutil : replace imapxfer in
part of the imap-utils from UW.
http://www.gsp.com/cgi-bin/man.cgi?topic=mailutil
imaprepl : http://www.bl0rg.net/software/
http://freshmeat.net/projects/imap-repl/
imap_migrate: http://freshmeat.net/projects/imapmigration/
@ -238,7 +241,7 @@ Entries for imapsync:
Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.75 2004/02/18 14:27:40 gilles Exp gilles $
$Id: imapsync,v 1.76 2004/02/18 21:34:46 gilles Exp gilles $
=cut
@ -273,7 +276,7 @@ my(
use vars qw ($opt_G); # missing code for this will be option.
$rcs = ' $Id: imapsync,v 1.75 2004/02/18 14:27:40 gilles Exp gilles $ ';
$rcs = ' $Id: imapsync,v 1.76 2004/02/18 21:34:46 gilles Exp gilles $ ';
$rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN";
@ -308,8 +311,8 @@ $error=0;
my $banner = join("",
'$RCSfile: imapsync,v $ ',
'$Revision: 1.75 $ ',
'$Date: 2004/02/18 14:27:40 $ ',
'$Revision: 1.76 $ ',
'$Date: 2004/02/18 21:34:46 $ ',
"\n",
"Mail::IMAPClient version used here is ",
$VERSION_IMAPClient, " auth md5 : $md5_supported",