The unparsed_messages table

The unparsed_messages table is used to record messages which could not be parsed at injection time. The aox reparse command reads it, tries to parse again, and stores the message in proper form if parsing succeeded.

The bodypart points to the unparsed message in the exact format it had when it arrived. (There isn't any link to mailboxes or mailbox_messages in this table — aox reparse joins this table to mailbox_messages via bodyparts, part_numbers and messages.)

create table unparsed_messages ( -- Grant: insert bodypart integer not null references bodyparts(id) on delete cascade, primary key(bodypart) );

The unparsed_messages table was introduced in version 1.16.

In case of questions, please write to info@aox.org.

Relevant links

About this page

Last modified: 2010-11-19
Location: aox.org/db/unparsed_messages