diff --git a/CREDITS b/CREDITS index f833792..a5ecd88 100644 --- a/CREDITS +++ b/CREDITS @@ -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) diff --git a/ChangeLog b/ChangeLog index 1eb5051..3c1a5f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 ---------------------------- diff --git a/README b/README index 8038d92..8a24ca3 100644 --- a/README +++ b/README @@ -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 $ diff --git a/VERSION b/VERSION index 07cde98..9242d8e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.75 +1.76 diff --git a/imapsync b/imapsync index d2cf0ae..c6abcba 100755 --- a/imapsync +++ b/imapsync @@ -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",