This commit is contained in:
Nick Bebout 2011-03-12 02:43:53 +00:00
parent b73d2cba61
commit 22e9c13cd4
4 changed files with 29 additions and 10 deletions

View file

@ -1,15 +1,23 @@
RCS file: RCS/imapsync,v RCS file: RCS/imapsync,v
Working file: imapsync Working file: imapsync
head: 1.80 head: 1.82
branch: branch:
locks: strict locks: strict
access list: access list:
symbolic names: symbolic names:
keyword substitution: kv keyword substitution: kv
total revisions: 80; selected revisions: 80 total revisions: 82; selected revisions: 82
description: description:
---------------------------- ----------------------------
revision 1.82
date: 2004/03/12 01:40:27; author: gilles; state: Exp; lines: +6 -6
removed only
----------------------------
revision 1.81
date: 2004/03/12 01:39:51; author: gilles; state: Exp; lines: +11 -5
AUTHOR pod section
----------------------------
revision 1.80 revision 1.80
date: 2004/03/12 01:11:22; author: gilles; state: Exp; lines: +6 -6 date: 2004/03/12 01:11:22; author: gilles; state: Exp; lines: +6 -6
IMail Win2003 IMail Win2003

9
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.80 $ $Revision: 1.82 $
INSTALL INSTALL
imapsync works fine under any Unix OS. imapsync works fine under any Unix OS.
@ -206,5 +206,10 @@ SIMILAR SOFTWARES
Feedback (good or bad) will be always welcome. Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.80 2004/03/12 01:11:22 gilles Exp $ AUTHOR
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.82 2004/03/12 01:40:27 gilles Exp $

View file

@ -1 +1 @@
1.80 1.82

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.80 $ $Revision: 1.82 $
=head1 INSTALL =head1 INSTALL
@ -243,7 +243,13 @@ Entries for imapsync:
Feedback (good or bad) will be always welcome. Feedback (good or bad) will be always welcome.
$Id: imapsync,v 1.80 2004/03/12 01:11:22 gilles Exp $ =head1 AUTHOR
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.82 2004/03/12 01:40:27 gilles Exp $
=cut =cut
@ -280,7 +286,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.80 2004/03/12 01:11:22 gilles Exp $ '; $rcs = ' $Id: imapsync,v 1.82 2004/03/12 01:40:27 gilles Exp $ ';
$rcs =~ m/,v (\d+\.\d+)/; $rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN"; $VERSION = ($1) ? $1 : "UNKNOWN";
@ -316,8 +322,8 @@ $error=0;
my $banner = join("", my $banner = join("",
'$RCSfile: imapsync,v $ ', '$RCSfile: imapsync,v $ ',
'$Revision: 1.80 $ ', '$Revision: 1.82 $ ',
'$Date: 2004/03/12 01:11:22 $ ', '$Date: 2004/03/12 01:40:27 $ ',
"\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",