]> git.g-eek.se Git - interimap.git/commitdiff
wibble
authorGuilhem Moulin <guilhem@fripost.org>
Sun, 26 Jul 2015 13:50:44 +0000 (15:50 +0200)
committerGuilhem Moulin <guilhem@fripost.org>
Sun, 26 Jul 2015 13:50:44 +0000 (15:50 +0200)
imapsync

index 9a4e2e93480808cd66a01b1aef32075b38cfe033..c0da7d6d2683b480abe4fa4f40fbcfaaf030f12e 100755 (executable)
--- a/imapsync
+++ b/imapsync
@@ -98,8 +98,8 @@ sub cleanup() {
     close $LOGGER_FD if defined $LOGGER_FD;
     $DBH->disconnect() if defined $DBH;
 }
-$SIG{$_} = sub { cleanup(); msg($!); exit 1; } foreach qw/INT TERM/;
-$SIG{$_} = sub { cleanup(); msg($!); exit 0; } foreach qw/HUP/;
+$SIG{$_} = sub { cleanup(); msg(undef, $!); exit 1; } foreach qw/INT TERM/;
+$SIG{$_} = sub { cleanup(); msg(undef, $!); exit 0; } foreach qw/HUP/;
 
 
 #############################################################################
@@ -444,7 +444,7 @@ sub sync_tree($$%) {
     }
 }
 
-# Syncronize subscription list
+# Synchronize subscription list
 my @SUBSCRIPTIONS;
 {
     my $sth_search = $DBH->prepare(q{SELECT idx,subscribed FROM mailboxes WHERE mailbox = ?});
@@ -1021,7 +1021,7 @@ my ($MAILBOX, $IDX);
 $STH_LIST_INTERRUPTED->execute();
 while (defined (my $row = $STH_LIST_INTERRUPTED->fetchrow_arrayref())) {
     ($IDX, $MAILBOX) = @$row;
-    msg("Resuming interrupted sync for $MAILBOX");
+    msg(undef, "Resuming interrupted sync for $MAILBOX");
 
     my %lUIDs;
     $STH_GET_INTERRUPTED_BY_IDX->execute($IDX);