X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=buffy.c;h=208eaacae146025ea26a72777059116d52f56b7e;hp=88e1cbd8add2ecd75a54e04f758b0c9f78dd1362;hb=be99cd72fc79e2f10aec2b06d62abb16c16aa34d;hpb=3d937534e7b1ee723f86594b5e4c64c95158a933 diff --git a/buffy.c b/buffy.c index 88e1cbd..208eaac 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,13 +411,21 @@ 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 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 + */ snprintf (path, sizeof (path), "%s/cur", tmp->path); if ((dirp = opendir (path)) == NULL) { @@ -428,11 +440,17 @@ int mutt_buffy_check (int force) { /* one new and undeleted message is enough */ BuffyCount++; +#if 0 + /* 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); +#endif break; case M_MH: