From: Adeodato Simó Date: Thu, 19 Jul 2007 21:41:02 +0000 (+0200) Subject: mutt (1.5.16-3) unstable; urgency=medium X-Git-Tag: 1.5.16-3 X-Git-Url: https://git.llucax.com/software/mutt-debian.git/commitdiff_plain/31bf71bd4a10329d81db902036b0156cbf316a6f?ds=inline;hp=--cc 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) --- 31bf71bd4a10329d81db902036b0156cbf316a6f diff --git a/debian/changelog b/debian/changelog index 30e109f..47242d7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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ó Thu, 19 Jul 2007 23:41:02 +0200 + mutt (1.5.16-2) unstable; urgency=low * Finally a new unstable version :) diff --git a/debian/patches/features/maildir-mtime b/debian/patches/features/maildir-mtime index a07635d..2be0792 100644 --- a/debian/patches/features/maildir-mtime +++ b/debian/patches/features/maildir-mtime @@ -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