]> git.g-eek.se Git - interimap.git/commitdiff
wibble
authorGuilhem Moulin <guilhem@fripost.org>
Thu, 23 Jul 2015 15:10:34 +0000 (17:10 +0200)
committerGuilhem Moulin <guilhem@fripost.org>
Thu, 23 Jul 2015 15:15:38 +0000 (17:15 +0200)
imapsync
lib/Net/IMAP/Sync.pm

index 5be570e3053f083b11914fa27c661666f7409c97..4ef47b3fb57780e982708eb6bf4a29d1333c6014 100755 (executable)
--- a/imapsync
+++ b/imapsync
@@ -752,9 +752,8 @@ sub sync_messages($$) {
 }
 
 
-
-# Wait for notifications on either IMAP server, up to $timout.  Then
-# issue a NOOP so the connection doesn't terminate for inactivity.
+# Wait up to $timout seconds for notifications on either IMAP server.
+# Then issue a NOOP so the connection doesn't terminate for inactivity.
 sub wait_notifications(;$) {
     my $timeout = shift // 300;
 
@@ -767,6 +766,7 @@ sub wait_notifications(;$) {
         if (--$timeout == 0) {
             $lIMAP->noop();
             $rIMAP->noop();
+            # might have got updates so exit the loop
         }
     }
 }
index ad7b2f538effc3aced0bde56de37bc9fa0f33fcd..21164430f5f45faa76257c2047dfc636aa4dfa28 100644 (file)
@@ -844,12 +844,12 @@ sub pull_updates($) {
             $self->_send("UID FETCH ".compact_set(@missing)." (MODSEQ FLAGS)") if @missing;
             @missing = ();
         }
-    
+
         # do that afterwards since the UID FETCH command above can produce VANISHED responses
         my %vanished = map {$_ => 1} @{$self->{_VANISHED}};
         @vanished = keys %vanished;
         $self->{_VANISHED} = [];
-    
+
         # ignore FLAG updates on VANISHED messages
         delete @modified{@vanished};
     }