4/17 What method does `frm` use to determine if a message is
new/unread or not? I'm using pine to read and frm's output isn't
very consistent.
\_ obUTSL
\_ Come again?
\_ Luke, use the source.
OKay, this took me <10 min to find the source, grab it, find the
source file and look for the status code. This time is a freebie,
next time it's your turn:
} else if (val = header_cmp(buffer, "Status", NULL)) {
no_ret(val);
switch (*val) {
case 'N': status = NEW_MSG; break;
case 'O': status = OLD_MSG; break;
case 'R': status = READ_MSG; break;
default: status = UNKNOWN; break;
} |