1 /* BEGIN INCLUDE FILE ... mlsys_mf_extension.incl.pl1 */ 2 /* Created: December 1983 by G. Palter */ 3 4 /* Definition of the extension to the mail_format structure used by the Multics Mail System: When the 5 mail_format.canonical flag is ON, the mail_format structure stored in a mailbox contains the canonical form of the 6 message; in addition, the following structure is also stored in the mailbox immediately after the mail_format 7 structure. This extension contains information that will be necessary to preserve the performance of context searching 8 of a message in future releases. Said information consists of the location and length within the canonical form of the 9 message body, subject, redistribution comments, and user-defined text fields */ 10 11 dcl 1 mf_extension aligned based (mf_extension_ptr), 12 2 n_text_fragments fixed binary (21), /* # of pieces of text which will be searched */ 13 2 text_fragments (mf_extension_n_text_fragments refer (mf_extension.n_text_fragments)), 14 3 start fixed binary (21), 15 3 lth fixed binary (21); 16 17 dcl mf_extension_n_text_fragments fixed binary (21); 18 dcl mf_extension_ptr pointer; 19 20 /* END INCLUDE FILE ... mlsys_mf_extension.incl.pl1 */