mirror of
https://github.com/imapsync/imapsync.git
synced 2025-08-12 11:39:20 +02:00
1.13
This commit is contained in:
parent
215120b54b
commit
598d76108a
4 changed files with 16 additions and 8 deletions
|
@ -1,15 +1,20 @@
|
||||||
|
|
||||||
RCS file: RCS/imapsync,v
|
RCS file: RCS/imapsync,v
|
||||||
Working file: imapsync
|
Working file: imapsync
|
||||||
head: 1.12
|
head: 1.13
|
||||||
branch:
|
branch:
|
||||||
locks: strict
|
locks: strict
|
||||||
access list:
|
access list:
|
||||||
symbolic names:
|
symbolic names:
|
||||||
keyword substitution: kv
|
keyword substitution: kv
|
||||||
total revisions: 12; selected revisions: 12
|
total revisions: 13; selected revisions: 13
|
||||||
description:
|
description:
|
||||||
----------------------------
|
----------------------------
|
||||||
|
revision 1.13
|
||||||
|
date: 2003/07/16 17:28:59; author: gilles; state: Exp; lines: +6 -3
|
||||||
|
- fix "you forgot to honour the --port option"
|
||||||
|
Thanks to Patrick C. F. Ernzer
|
||||||
|
----------------------------
|
||||||
revision 1.12
|
revision 1.12
|
||||||
date: 2003/07/07 20:19:58; author: gilles; state: Exp; lines: +20 -4
|
date: 2003/07/07 20:19:58; author: gilles; state: Exp; lines: +20 -4
|
||||||
Updated documentation :
|
Updated documentation :
|
||||||
|
|
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.12 $
|
$Revision: 1.13 $
|
||||||
|
|
||||||
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.12 2003/07/07 20:19:58 gilles Exp $
|
$Id: imapsync,v 1.13 2003/07/16 17:28:59 gilles Exp $
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
1.12
|
1.13
|
||||||
|
|
9
imapsync
9
imapsync
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
imapsync - synchronize mailboxes between two imap servers.
|
imapsync - synchronize mailboxes between two imap servers.
|
||||||
|
|
||||||
$Revision: 1.12 $
|
$Revision: 1.13 $
|
||||||
|
|
||||||
=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.12 2003/07/07 20:19:58 gilles Exp $
|
$Id: imapsync,v 1.13 2003/07/16 17:28:59 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.12 2003/07/07 20:19:58 gilles Exp $ ';
|
$rcs = ' $Id: imapsync,v 1.13 2003/07/16 17:28:59 gilles Exp $ ';
|
||||||
$rcs =~ m/,v (\d+\.\d+)/;
|
$rcs =~ m/,v (\d+\.\d+)/;
|
||||||
$VERSION = ($1) ? $1 : "UNKNOWN";
|
$VERSION = ($1) ? $1 : "UNKNOWN";
|
||||||
$error=0;
|
$error=0;
|
||||||
|
@ -190,7 +190,9 @@ print "To imap server [$host2] port [$port2] user [$user2]\n";
|
||||||
|
|
||||||
my $from = ();
|
my $from = ();
|
||||||
my $to = ();
|
my $to = ();
|
||||||
|
|
||||||
$from = Mail::IMAPClient->new( Server => $host1,
|
$from = Mail::IMAPClient->new( Server => $host1,
|
||||||
|
Port => $port1,
|
||||||
User => $user1,
|
User => $user1,
|
||||||
Password => $password1,
|
Password => $password1,
|
||||||
Fast_IO => 1,
|
Fast_IO => 1,
|
||||||
|
@ -201,6 +203,7 @@ $from = Mail::IMAPClient->new( Server => $host1,
|
||||||
|
|
||||||
|
|
||||||
$to = Mail::IMAPClient->new( Server => $host2,
|
$to = Mail::IMAPClient->new( Server => $host2,
|
||||||
|
Port => $port1,
|
||||||
User => $user2,
|
User => $user2,
|
||||||
Password=> $password2,
|
Password=> $password2,
|
||||||
Fast_IO => 1,
|
Fast_IO => 1,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue