]> git.llucax.com Git - software/mutt-debian.git/commitdiff
mutt (1.5.16-3) unstable; urgency=medium 1.5.16-3
authorAdeodato Simó <dato@net.com.org.es>
Thu, 19 Jul 2007 21:41:02 +0000 (23:41 +0200)
committerAdeodato Simó <dato@net.com.org.es>
Thu, 19 Jul 2007 21:41:02 +0000 (23:41 +0200)
  * Fix the maildir-mtime patch change in 1.5.14+cvs20070403-1 that broke
    new mail message count in IMAP folders. (Closes: #421468, #428734, #433275)

debian/changelog
debian/patches/features/maildir-mtime

index 30e109f46ab0cf15c3f961138d063ca9bb4e5f3d..47242d7e31e94dda443e96911c30b0f7ec82c52b 100644 (file)
@@ -1,3 +1,10 @@
+mutt (1.5.16-3) unstable; urgency=medium
+
+  * Fix the maildir-mtime patch change in 1.5.14+cvs20070403-1 that broke
+    new mail message count in IMAP folders. (Closes: #421468, #428734, #433275)
+
+ -- Adeodato Simó <dato@net.com.org.es>  Thu, 19 Jul 2007 23:41:02 +0200
+
 mutt (1.5.16-2) unstable; urgency=low
 
   * Finally a new unstable version :)
index a07635d4539092dbdaced1b5ad5110a043ddbfb8..2be0792bcb74419261605838d27f35a7f76eac58 100644 (file)
@@ -153,12 +153,13 @@ Index: debian-mutt/browser.c
    }
    closedir (dp);  
    browser_sort (state);
-@@ -442,14 +448,14 @@ static int examine_mailboxes (MUTTMENU *
+@@ -442,14 +448,15 @@ static int examine_mailboxes (MUTTMENU *
      if (mx_is_imap (tmp->path))
      {
        imap_mailbox_state (tmp->path, &mbox);
 -      add_folder (menu, state, tmp->path, NULL, mbox.new);
-+      add_folder (menu, state, tmp->path, NULL, &mbox);
++      tmp->new = mbox.new;
++      add_folder (menu, state, tmp->path, NULL, tmp);
        continue;
      }
  #endif