The permissions table contains IMAP ACL data, as specified by RFC 4314.
Each permissions row pertains to a given mailbox and grants rights to a single identifier, usually a user, although it can also be "anyone" or a group. The rights are held as a series of single-character codes, documented in RFC 4314 and also in the Archiveopteryx source code.
create table permissions ( -- Grant: select, insert, delete, update mailbox integer not null references mailboxes(id), identifier text not null, rights text not null, primary key (mailbox, identifier) );
The permissions table was introduced in version 0.93.
In case of questions, please write to info@aox.org.
Last modified: 2010-11-19
Location: aox.org/db/permissions