messageMapper = $messageMapper; $this->mailboxMapper = $mailboxMapper; $this->logger = $logger; } public function migrateImportantOnImap(Horde_Imap_Client_Socket $client, Account $account, Mailbox $mailbox): void { try { $uids = $this->messageMapper->getFlagged($client, $mailbox, '$important'); } catch (Horde_Imap_Client_Exception $e) { throw new ServiceException('Could not fetch UIDs of important messages: ' . $e->getMessage(), 0, $e); } // add $label1 for all that are tagged on IMAP if ($uids !== []) { try { $this->messageMapper->addFlag($client, $mailbox, $uids, Tag::LABEL_IMPORTANT); } catch (Horde_Imap_Client_Exception $e) { $this->logger->debug('Could not flag messages in mailbox <' . $mailbox->getId() . '>'); throw new ServiceException($e->getMessage(), 0, $e); } } } public function migrateImportantFromDb(Horde_Imap_Client_Socket $client, Account $account, Mailbox $mailbox): void { $uids = $this->mailboxMapper->findFlaggedImportantUids($mailbox->getId()); // store our data on imap if ($uids !== []) { try { $this->messageMapper->addFlag($client, $mailbox, $uids, Tag::LABEL_IMPORTANT); } catch (Horde_Imap_Client_Exception $e) { $this->logger->debug('Could not flag messages in mailbox <' . $mailbox->getId() . '>'); throw new ServiceException($e->getMessage(), 0, $e); } } } }