The flag_names table

flag_names records the names of all possible message flags.

Message flags are binary variables which IMAP clients may set or clear on messages. For example, the IMAP \Seen flag is set or cleared by most clients in order to remember whether a message has been read or not.

Flags are kept in the flags table, which refers to this one.

Flag names are case insensitive in Archiveopteryx.

create table flag_names ( -- Grant: select, insert id serial primary key, name text );

The flag_names table was introduced in version 0.93.

In case of questions, please write to info@oryx.com.

Relevant links

About this page

Last modified: 2008-08-25
Location: aox.org/db/flag_names