On Fri, Aug 13, 1999 at 21:47:38 +0000, Tom Gilbert wrote:
> Hi guys,
>
> Is there any way I can change the character used to indicate an Old
> message (unread but not new) when mark_old is set?
>
> It currently uses O, but I would prefer n or U or something more
> appropriate...
>
> Any options?
Yes, change the source and rebuild. The used character are
hardcoded into this expression in hdrline.c:
(THREAD_NEW ? 'n' : (THREAD_OLD ? 'o' :
((hdr->read && (ctx && ctx->msgnotreadyet != hdr->msgno))
? (hdr->replied ? 'r' : ' ') : (hdr->old ? 'O' : 'N'))))
Just change the 'O' to 'U' or some other character.
--
Byrial