mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-12 23:44:52 +02:00
1.6
This commit is contained in:
parent
8dd42376aa
commit
c828f17d2f
5 changed files with 21 additions and 11 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,17 +1,21 @@
|
||||||
|
|
||||||
RCS file: RCS/imapsync,v
|
RCS file: RCS/imapsync,v
|
||||||
Working file: imapsync
|
Working file: imapsync
|
||||||
head: 1.5
|
head: 1.6
|
||||||
branch:
|
branch:
|
||||||
locks: strict
|
locks: strict
|
||||||
gilles: 1.5
|
gilles: 1.6
|
||||||
access list:
|
access list:
|
||||||
symbolic names:
|
symbolic names:
|
||||||
keyword substitution: kv
|
keyword substitution: kv
|
||||||
total revisions: 5; selected revisions: 5
|
total revisions: 6; selected revisions: 6
|
||||||
description:
|
description:
|
||||||
----------------------------
|
----------------------------
|
||||||
revision 1.5 locked by: gilles;
|
revision 1.6 locked by: gilles;
|
||||||
|
date: 2003/03/14 02:17:24; author: gilles; state: Exp; lines: +5 -3
|
||||||
|
Added positive exit if errors occurred.
|
||||||
|
----------------------------
|
||||||
|
revision 1.5
|
||||||
date: 2003/03/14 01:20:37; author: gilles; state: Exp; lines: +14 -6
|
date: 2003/03/14 01:20:37; author: gilles; state: Exp; lines: +14 -6
|
||||||
Better debug output.
|
Better debug output.
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
7
Makefile
7
Makefile
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
# $Id: Makefile,v 1.1 2003/03/12 23:14:02 gilles Exp gilles $
|
# $Id: Makefile,v 1.2 2003/03/14 02:25:27 gilles Exp gilles $
|
||||||
|
|
||||||
TARGET=imapsync
|
TARGET=imapsync
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ usage:
|
||||||
@echo make testv # run tests verbosely
|
@echo make testv # run tests verbosely
|
||||||
@echo make all
|
@echo make all
|
||||||
|
|
||||||
all: test ChangeLog README
|
all: test ChangeLog README VERSION
|
||||||
|
|
||||||
.PHONY: test testp testf
|
.PHONY: test testp testf
|
||||||
|
|
||||||
|
@ -38,6 +38,9 @@ ChangeLog: $(TARGET)
|
||||||
README: $(TARGET)
|
README: $(TARGET)
|
||||||
perldoc -t $(TARGET) > README
|
perldoc -t $(TARGET) > README
|
||||||
|
|
||||||
|
VERSION: $(TARGET) Makefile
|
||||||
|
./$(TARGET) --version > VERSION
|
||||||
|
|
||||||
.PHONY: clean clean_tilde clean_test
|
.PHONY: clean clean_tilde clean_test
|
||||||
|
|
||||||
clean: clean_tilde clean_test
|
clean: clean_tilde clean_test
|
||||||
|
|
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.5 $
|
$Revision: 1.6 $
|
||||||
|
|
||||||
INSTALL
|
INSTALL
|
||||||
Get imapsync at http://www.linux-france.org/prj/imapsync/dist/
|
Get imapsync at http://www.linux-france.org/prj/imapsync/dist/
|
||||||
|
@ -89,5 +89,5 @@ BUGS
|
||||||
SIMILAR SOFTWARES
|
SIMILAR SOFTWARES
|
||||||
None known. Feedback will be welcome.
|
None known. Feedback will be welcome.
|
||||||
|
|
||||||
$Id: imapsync,v 1.5 2003/03/14 01:20:37 gilles Exp gilles $
|
$Id: imapsync,v 1.6 2003/03/14 02:17:24 gilles Exp gilles $
|
||||||
|
|
||||||
|
|
1
VERSION
Normal file
1
VERSION
Normal file
|
@ -0,0 +1 @@
|
||||||
|
1.6
|
8
imapsync
8
imapsync
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
imapsync - synchronize mailboxes between two imap servers.
|
imapsync - synchronize mailboxes between two imap servers.
|
||||||
|
|
||||||
$Revision: 1.5 $
|
$Revision: 1.6 $
|
||||||
|
|
||||||
=head1 INSTALL
|
=head1 INSTALL
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ Report any bugs to the author: lamiral@linux-france.org
|
||||||
None known.
|
None known.
|
||||||
Feedback will be welcome.
|
Feedback will be welcome.
|
||||||
|
|
||||||
$Id: imapsync,v 1.5 2003/03/14 01:20:37 gilles Exp gilles $
|
$Id: imapsync,v 1.6 2003/03/14 02:17:24 gilles Exp gilles $
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
@ -135,7 +135,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.5 2003/03/14 01:20:37 gilles Exp gilles $ ';
|
$rcs = ' $Id: imapsync,v 1.6 2003/03/14 02:17:24 gilles Exp gilles $ ';
|
||||||
$rcs =~ m/,v (\d+\.\d+)/;
|
$rcs =~ m/,v (\d+\.\d+)/;
|
||||||
$VERSION = ($1) ? $1 : "UNKNOWN";
|
$VERSION = ($1) ? $1 : "UNKNOWN";
|
||||||
$error=0;
|
$error=0;
|
||||||
|
@ -346,6 +346,8 @@ sub header_parse {
|
||||||
|
|
||||||
stats();
|
stats();
|
||||||
|
|
||||||
|
exit(1) if($error);
|
||||||
|
|
||||||
sub stats {
|
sub stats {
|
||||||
print "Detected $error errors\n";
|
print "Detected $error errors\n";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue