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

index 705ad3d3285fe4f59323cf0b384674c3b4b82250..5be570e3053f083b11914fa27c661666f7409c97 100755 (executable)
--- a/imapsync
+++ b/imapsync
@@ -727,7 +727,7 @@ sub sync_messages($$) {
 
     # new mailbox
     if (!defined $$idx) {
-        my $subscribed = grep { $_ eq $mailbox} @SUBSCRIPTIONS ? 1 : 0;
+        my $subscribed = (grep { $_ eq $mailbox} @SUBSCRIPTIONS) ? 1 : 0;
         $STH_NEWMAILBOX->execute($mailbox, $subscribed);
         $STH_GET_INDEX->execute($mailbox);
         ($$idx) = $STH_GET_INDEX->fetchrow_array();
index b9525466ddb15d781743ab4b0affe5da918f34ab..ad7b2f538effc3aced0bde56de37bc9fa0f33fcd 100644 (file)
@@ -321,7 +321,7 @@ sub new($%) {
 
         $self->fail("Logins are disabled.") if grep {$_ eq 'LOGINDISABLED'} @caps;
         my @mechs = grep defined, map { /^AUTH=(.+)/ ? $1 : undef } @caps;
-        my $mech = (grep defined, map {my $m = $_; grep {$m eq $_} @mechs ? $m : undef}
+        my $mech = (grep defined, map {my $m = $_; (grep {$m eq $_} @mechs) ? $m : undef}
                                       split(/ /, $self->{auth}))[0];
         $self->fail("Failed to choose an authentication mechanism") unless defined $mech;
 
@@ -847,7 +847,7 @@ sub pull_updates($) {
     
         # do that afterwards since the UID FETCH command above can produce VANISHED responses
         my %vanished = map {$_ => 1} @{$self->{_VANISHED}};
-        my @vanished = keys %vanished;
+        @vanished = keys %vanished;
         $self->{_VANISHED} = [];
     
         # ignore FLAG updates on VANISHED messages