X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=buffy.c;h=34010dec271639c3307ba11e667b1f0f99a80ad3;hb=ba1dcc133bb083b29ec620ff9559d923242c628c;hp=5e041d04f629fc4144a9d3cbc35d649a22b95053;hpb=10852340be6d525c75c4da971ac8cfe1fe742781;p=apps%2Fmadmutt.git diff --git a/buffy.c b/buffy.c index 5e041d0..34010de 100644 --- a/buffy.c +++ b/buffy.c @@ -16,6 +16,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ +#if HAVE_CONFIG_H +# include "config.h" +#endif + #include "mutt.h" #include "buffy.h" #include "mailbox.h" @@ -407,14 +411,17 @@ int mutt_buffy_check (int force) (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T'))) { /* one new and undeleted message is enough */ - BuffyCount++; - tmp->has_new = tmp->new = 1; - tmp->msgcount++; - tmp->msg_unread++; + if (tmp->new != 1) + { + BuffyCount++; + tmp->has_new = tmp->new = 1; + } + tmp->msgcount++; + tmp->msg_unread++; } } closedir (dirp); -#if 0 +#if 1 /* I commented this out because it led to an infite "New mail in ..." loop, * and when looking at the code, the check seems to be overly eager. * -- ak @@ -432,9 +439,14 @@ int mutt_buffy_check (int force) (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T'))) { /* one new and undeleted message is enough */ +#if 0 BuffyCount++; + /* we're checking for read and not new mail; + * seems like copy'n'paste error + */ tmp->has_new = tmp->new = 1; - tmp->msgcount++; +#endif + tmp->msgcount++; } } closedir (dirp);