mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-13 16:04:50 +02:00
1.15
This commit is contained in:
parent
237b900394
commit
dcd74bf3e7
4 changed files with 13 additions and 9 deletions
|
@ -1,15 +1,19 @@
|
||||||
|
|
||||||
RCS file: RCS/imapsync,v
|
RCS file: RCS/imapsync,v
|
||||||
Working file: imapsync
|
Working file: imapsync
|
||||||
head: 1.14
|
head: 1.15
|
||||||
branch:
|
branch:
|
||||||
locks: strict
|
locks: strict
|
||||||
access list:
|
access list:
|
||||||
symbolic names:
|
symbolic names:
|
||||||
keyword substitution: kv
|
keyword substitution: kv
|
||||||
total revisions: 14; selected revisions: 14
|
total revisions: 15; selected revisions: 15
|
||||||
description:
|
description:
|
||||||
----------------------------
|
----------------------------
|
||||||
|
revision 1.15
|
||||||
|
date: 2003/07/17 12:22:23; author: gilles; state: Exp; lines: +4 -4
|
||||||
|
Added imap debug mode to server2
|
||||||
|
----------------------------
|
||||||
revision 1.14
|
revision 1.14
|
||||||
date: 2003/07/17 11:58:56; author: gilles; state: Exp; lines: +14 -12
|
date: 2003/07/17 11:58:56; author: gilles; state: Exp; lines: +14 -12
|
||||||
- Fixed port2 variable.
|
- Fixed port2 variable.
|
||||||
|
|
4
README
4
README
|
@ -1,7 +1,7 @@
|
||||||
NAME
|
NAME
|
||||||
imapsync - synchronize mailboxes between two imap servers.
|
imapsync - synchronize mailboxes between two imap servers.
|
||||||
|
|
||||||
$Revision: 1.14 $
|
$Revision: 1.15 $
|
||||||
|
|
||||||
INSTALL
|
INSTALL
|
||||||
Get imapsync at http://www.linux-france.org/prj/imapsync/dist/
|
Get imapsync at http://www.linux-france.org/prj/imapsync/dist/
|
||||||
|
@ -114,5 +114,5 @@ SIMILAR SOFTWARES
|
||||||
|
|
||||||
Feedback will be welcome.
|
Feedback will be welcome.
|
||||||
|
|
||||||
$Id: imapsync,v 1.14 2003/07/17 11:58:56 gilles Exp $
|
$Id: imapsync,v 1.15 2003/07/17 12:22:23 gilles Exp $
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
1.14
|
1.15
|
||||||
|
|
8
imapsync
8
imapsync
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
imapsync - synchronize mailboxes between two imap servers.
|
imapsync - synchronize mailboxes between two imap servers.
|
||||||
|
|
||||||
$Revision: 1.14 $
|
$Revision: 1.15 $
|
||||||
|
|
||||||
=head1 INSTALL
|
=head1 INSTALL
|
||||||
|
|
||||||
|
@ -136,7 +136,7 @@ both sides. This will help future users.
|
||||||
|
|
||||||
Feedback will be welcome.
|
Feedback will be welcome.
|
||||||
|
|
||||||
$Id: imapsync,v 1.14 2003/07/17 11:58:56 gilles Exp $
|
$Id: imapsync,v 1.15 2003/07/17 12:22:23 gilles Exp $
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
@ -161,7 +161,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.14 2003/07/17 11:58:56 gilles Exp $ ';
|
$rcs = ' $Id: imapsync,v 1.15 2003/07/17 12:22:23 gilles Exp $ ';
|
||||||
$rcs =~ m/,v (\d+\.\d+)/;
|
$rcs =~ m/,v (\d+\.\d+)/;
|
||||||
$VERSION = ($1) ? $1 : "UNKNOWN";
|
$VERSION = ($1) ? $1 : "UNKNOWN";
|
||||||
$error=0;
|
$error=0;
|
||||||
|
@ -210,7 +210,7 @@ $to = Mail::IMAPClient->new( Server => $host2,
|
||||||
Fast_IO => 1,
|
Fast_IO => 1,
|
||||||
Uid => 1,
|
Uid => 1,
|
||||||
Peek => 1,
|
Peek => 1,
|
||||||
Debug => 0,
|
Debug => $debugimap,
|
||||||
)
|
)
|
||||||
or die "can't open imap connection on [$host2] with user [$user2]\n";
|
or die "can't open imap connection on [$host2] with user [$user2]\n";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue