This commit is contained in:
Nick Bebout 2011-03-12 02:43:57 +00:00
parent c51aff3f14
commit ce78978b44
5 changed files with 36 additions and 17 deletions

View file

@ -2,10 +2,11 @@
=head1 NAME
imapsync - IMAP sync or copy tool. Synchronize mailboxes
between two imap servers.
imapsync - IMAP synchronization, copy or migration
tool. Synchronize mailboxes between two imap servers. Good
at IMAP migration.
$Revision: 1.98 $
$Revision: 1.99 $
=head1 INSTALL
@ -167,7 +168,13 @@ the headers found by imapsync by using the --debug option
this problem is by using options --skipheader and
--skipsize, like this (avoid headers beginning whith X-):
imapsync ... --skipheader '^X-.*' --skipsize
imapsync ... --skipheader '^X-' --skipsize
You can use --skipheader only one time; if you need to skip
several different headers use the "or" perl regex caracter
which is "|". Example:
imapsync ... --skipheader '^X-|^Status|^Bcc'
Flags : with some IMAP servers the flags are not very well
copied the first time. Run imapsync twice if you want the
@ -273,7 +280,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.98 2004/09/29 15:49:53 gilles Exp $
$Id: imapsync,v 1.99 2004/10/04 18:42:40 gilles Exp $
=cut
@ -314,7 +321,7 @@ my(
use vars qw ($opt_G); # missing code for this will be option.
$rcs = ' $Id: imapsync,v 1.98 2004/09/29 15:49:53 gilles Exp $ ';
$rcs = ' $Id: imapsync,v 1.99 2004/10/04 18:42:40 gilles Exp $ ';
$rcs =~ m/,v (\d+\.\d+)/;
$VERSION = ($1) ? $1 : "UNKNOWN";
@ -351,8 +358,8 @@ $error=0;
my $banner = join("",
'$RCSfile: imapsync,v $ ',
'$Revision: 1.98 $ ',
'$Date: 2004/09/29 15:49:53 $ ',
'$Revision: 1.99 $ ',
'$Date: 2004/10/04 18:42:40 $ ',
"\n",
"Mail::IMAPClient version used here is ",
$VERSION_IMAPClient, " auth md5 : $md5_supported",