X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mx%2Fmx.c;h=d5cf676cc68a4463edf78d8a7bb190b713544a5a;hp=6a6411521955528f5385a35a0967b94976027c21;hb=455a2390989dfcfc90899785b0d8e9ac94ebd28e;hpb=2ac2bb6e436cef59dcbb88031b276aa81a109785;ds=sidebyside diff --git a/lib-mx/mx.c b/lib-mx/mx.c index 6a64115..d5cf676 100644 --- a/lib-mx/mx.c +++ b/lib-mx/mx.c @@ -10,8 +10,6 @@ #include -#include - #include #include #include @@ -20,7 +18,6 @@ #include "mutt.h" #include "crypt.h" #include "pattern.h" -#include "buffy.h" #include "mx.h" #include "mbox.h" #include "mh.h" @@ -29,11 +26,11 @@ #include "copy.h" #include "keymap.h" #include "compress.h" +#include "score.h" #include "dotlock.h" #include -#include - +#include "pop.h" #ifdef USE_NNTP #include #endif @@ -1165,7 +1162,7 @@ int mx_close_message (MESSAGE ** msg) void mx_alloc_memory (CONTEXT * ctx) { - ctx->hdrmax += 25; + ctx->hdrmax += 32; p_realloc(&ctx->hdrs, ctx->hdrmax); p_realloc(&ctx->v2r, ctx->hdrmax); @@ -1206,7 +1203,7 @@ void mx_update_context (CONTEXT * ctx, int new_messages) /* p_delete(&h->env->supersedes); should I ? */ if (h2) { h2->superseded = 1; - if (!ctx->counting && option (OPTSCORE)) + if (!ctx->counting && mod_score.enable) mutt_score_message (ctx, h2, 1); } } @@ -1218,7 +1215,7 @@ void mx_update_context (CONTEXT * ctx, int new_messages) if (ctx->subj_hash && h->env->real_subj) hash_insert (ctx->subj_hash, h->env->real_subj, h); - if (option (OPTSCORE)) + if (mod_score.enable) mutt_score_message (ctx, h, 0); }