mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 00:02:29 +01:00
1.108
This commit is contained in:
parent
496c895c56
commit
d23a9d84e4
1
CREDITS
1
CREDITS
@ -12,6 +12,7 @@ Bryce Walter
|
||||
Gave "OpenWave to Imail 8.12"
|
||||
|
||||
David Alix
|
||||
Suggested transfer the ACL.
|
||||
Suggested order message transfer by uid.
|
||||
Gave "Simeon Messaging Server from MessagingDirect" and
|
||||
"Sendmail Advanced Messaging Server (from Sendmail.com)"
|
||||
|
@ -1,15 +1,19 @@
|
||||
|
||||
RCS file: RCS/imapsync,v
|
||||
Working file: imapsync
|
||||
head: 1.107
|
||||
head: 1.108
|
||||
branch:
|
||||
locks: strict
|
||||
access list:
|
||||
symbolic names:
|
||||
keyword substitution: kv
|
||||
total revisions: 107; selected revisions: 107
|
||||
total revisions: 108; selected revisions: 108
|
||||
description:
|
||||
----------------------------
|
||||
revision 1.108
|
||||
date: 2004/12/29 03:19:48; author: gilles; state: Exp; lines: +8 -7
|
||||
--prefix2 applied before --regextrans2
|
||||
----------------------------
|
||||
revision 1.107
|
||||
date: 2004/12/28 23:24:05; author: gilles; state: Exp; lines: +30 -9
|
||||
Added option --nosyncacls
|
||||
|
4
README
4
README
@ -2,7 +2,7 @@ NAME
|
||||
imapsync - IMAP synchronization, copy or migration tool. Synchronize
|
||||
mailboxes between two imap servers. Good at IMAP migration.
|
||||
|
||||
$Revision: 1.107 $
|
||||
$Revision: 1.108 $
|
||||
|
||||
INSTALL
|
||||
imapsync works fine under any Unix OS.
|
||||
@ -239,5 +239,5 @@ AUTHOR
|
||||
teaching free open and gratis softwares. Don't hesitate to pay him for
|
||||
that services.
|
||||
|
||||
$Id: imapsync,v 1.107 2004/12/28 23:24:05 gilles Exp $
|
||||
$Id: imapsync,v 1.108 2004/12/29 03:19:48 gilles Exp $
|
||||
|
||||
|
3
TODO
3
TODO
@ -1,6 +1,9 @@
|
||||
TODO file for imapsync
|
||||
----------------------
|
||||
|
||||
Add cyrus link about INBOX. namespace
|
||||
http://asg.web.cmu.edu/cyrus/download/imapd/altnamespace.html
|
||||
|
||||
Look at http://freshmeat.net/projects/freshmeat-submit/
|
||||
Look at comp.mail.imap http://groups.google.fr/groups?q=imapsync
|
||||
|
||||
|
15
imapsync
15
imapsync
@ -6,7 +6,7 @@ imapsync - IMAP synchronization, copy or migration
|
||||
tool. Synchronize mailboxes between two imap servers. Good
|
||||
at IMAP migration.
|
||||
|
||||
$Revision: 1.107 $
|
||||
$Revision: 1.108 $
|
||||
|
||||
=head1 INSTALL
|
||||
|
||||
@ -281,7 +281,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.107 2004/12/28 23:24:05 gilles Exp $
|
||||
$Id: imapsync,v 1.108 2004/12/29 03:19:48 gilles Exp $
|
||||
|
||||
=cut
|
||||
|
||||
@ -323,7 +323,7 @@ my(
|
||||
use vars qw ($opt_G); # missing code for this will be option.
|
||||
|
||||
|
||||
$rcs = ' $Id: imapsync,v 1.107 2004/12/28 23:24:05 gilles Exp $ ';
|
||||
$rcs = ' $Id: imapsync,v 1.108 2004/12/29 03:19:48 gilles Exp $ ';
|
||||
$rcs =~ m/,v (\d+\.\d+)/;
|
||||
$VERSION = ($1) ? $1 : "UNKNOWN";
|
||||
|
||||
@ -360,8 +360,8 @@ $error=0;
|
||||
|
||||
my $banner = join("",
|
||||
'$RCSfile: imapsync,v $ ',
|
||||
'$Revision: 1.107 $ ',
|
||||
'$Date: 2004/12/28 23:24:05 $ ',
|
||||
'$Revision: 1.108 $ ',
|
||||
'$Date: 2004/12/29 03:19:48 $ ',
|
||||
"\n",
|
||||
"Mail::IMAPClient version used here is ",
|
||||
$VERSION_IMAPClient, " auth md5 : $md5_supported",
|
||||
@ -641,14 +641,15 @@ FOLDER: foreach my $f_fold (@f_folders) {
|
||||
|
||||
$t_fold = separator_invert($f_fold,$f_sep, $t_sep);
|
||||
|
||||
# Adding the prefix supplied by the --prefix2 option
|
||||
$t_fold = $prefix2 . $t_fold if ($prefix2);
|
||||
|
||||
# Transforming the folder name by the --regextrans2 option
|
||||
if ($regextrans2) {
|
||||
$debug and print "eval \$t_fold =~ $regextrans2\n";
|
||||
eval("\$t_fold =~ $regextrans2");
|
||||
}
|
||||
|
||||
# Adding the prefix supplied by the --prefix2 option
|
||||
$t_fold = $prefix2 . $t_fold if ($prefix2);
|
||||
print "To Folder [$t_fold]\n";
|
||||
|
||||
unless ($from->select($f_fold)) {
|
||||
|
Loading…
Reference in New Issue
Block a user