. * * @category Plugin * @package StatusNet * @author Craig Andrews mailbox)){ throw new Exception("must specify a mailbox"); } if(!isset($this->user)){ throw new Exception("must specify a user"); } if(!isset($this->password)){ throw new Exception("must specify a password"); } if(!isset($this->poll_frequency)){ throw new Exception("must specify a poll_frequency"); } return true; } /** * Load related modules when needed * * @param string $cls Name of the class to be loaded * * @return boolean hook value; true means continue processing, false means stop. */ function onAutoload($cls) { $dir = dirname(__FILE__); switch ($cls) { case 'ImapManager': case 'IMAPMailHandler': include_once $dir . '/'.strtolower($cls).'.php'; return false; default: return true; } } function onStartQueueDaemonIoManagers(&$classes) { $classes[] = new ImapManager($this); } function onPluginVersion(&$versions) { $versions[] = array('name' => 'IMAP', 'version' => STATUSNET_VERSION, 'author' => 'Craig Andrews', 'homepage' => 'http://status.net/wiki/Plugin:IMAP', 'rawdescription' => _m('The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for incoming mail containing user posts.')); return true; } }