00001 <?php 00028 class Zend_Mail_Storage 00029 { 00030 // maildir and IMAP flags, using IMAP names, where possible to be able to distinguish between IMAP 00031 // system flags and other flags 00032 const FLAG_PASSED = 'Passed'; 00033 const FLAG_SEEN = '\Seen'; 00034 const FLAG_ANSWERED = '\Answered'; 00035 const FLAG_FLAGGED = '\Flagged'; 00036 const FLAG_DELETED = '\Deleted'; 00037 const FLAG_DRAFT = '\Draft'; 00038 const FLAG_RECENT = '\Recent'; 00039 }