annotation_names is used for the IMAP ANNOTATE extension, which permits annotating messges with string variables.
Each message annotation has a name and a value. The name (a column in the annotations table) refers to this table, and this table holds all the annotation names ever seen.
create table annotation_names ( id serial primary key, name text unique );
The annotation_names table was introduced in version 0.99.
In case of questions, please write to info@oryx.com.
Last modified: 2008-08-20
Location: aox.org/db/annotation_names