Hi,

Michael Convey <[email protected]> wrote:
 |In the mailx message below, what do the following mean?
 |
 |Status: RO
 |
 |X-Status: A
 |
 |Is there a list of all the "Status" and "X-Status" codes? 

If you can read source code, yes:

  statusput():
     if (mp->m_flag & MREAD)
        *cp++ = 'R';
     if (!(mp->m_flag & MNEW))
        *cp++ = 'O';
  xtatusput():
     if (mp->m_flag & MFLAGGED)
        *xp++ = 'F';
     if (mp->m_flag & MANSWERED)
        *xp++ = 'A';
     if (mp->m_flag & MDRAFTED)
        *xp++ = 'T';

--steffen

------------------------------------------------------------------------------
_______________________________________________
nail-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/nail-devel

Reply via email to