(account, mailboxes = HOTMAIL_MAILBOXES)
| 1756 | } |
| 1757 | |
| 1758 | async function fetchHotmailMailboxMessages(account, mailboxes = HOTMAIL_MAILBOXES) { |
| 1759 | const serviceSettings = getHotmailServiceSettings(await getState()); |
| 1760 | if (serviceSettings.mode === HOTMAIL_SERVICE_MODE_LOCAL) { |
| 1761 | return requestHotmailLocalMessages(account, mailboxes); |
| 1762 | } |
| 1763 | return fetchHotmailMailboxMessagesFromRemoteService(account, mailboxes); |
| 1764 | } |
| 1765 | |
| 1766 | async function verifyHotmailAccount(accountId) { |
| 1767 | const state = await getState(); |
no test coverage detected