From: David Shaw Date: Mon, 9 Dec 2002 18:03:55 +0000 (+0000) Subject: Reduce the meaning of the mark_old option so it only controls X-Git-Tag: mutt-1-5-3-rel~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c26c25314d96bd607487a9cff6e8defd4b75f81d;p=mutt Reduce the meaning of the mark_old option so it only controls whether new messages are marked as old when leaving the mailbox. --- diff --git a/mh.c b/mh.c index 77ea5f4d..ebe93e36 100644 --- a/mh.c +++ b/mh.c @@ -704,7 +704,7 @@ static int maildir_parse_dir (CONTEXT * ctx, struct maildir ***last, if (subdir) { snprintf (buf, sizeof (buf), "%s/%s", ctx->path, subdir); - is_old = (mutt_strcmp ("cur", subdir) == 0) && option (OPTMARKOLD); + is_old = (mutt_strcmp ("cur", subdir) == 0); } else strfcpy (buf, ctx->path, sizeof (buf)); diff --git a/parse.c b/parse.c index d3ff9233..50c8a454 100644 --- a/parse.c +++ b/parse.c @@ -1161,7 +1161,6 @@ int mutt_parse_rfc822_line (ENVELOPE *e, HEADER *hdr, char *line, char *p, short hdr->replied = 1; break; case 'O': - if (option (OPTMARKOLD)) hdr->old = 1; break; case 'R':