emailengine-app 2.66.0 → 2.67.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/deploy.yml +1 -1
- package/.github/workflows/release.yaml +2 -2
- package/.github/workflows/test.yml +2 -2
- package/.ncurc.js +4 -1
- package/CHANGELOG.md +25 -0
- package/data/google-crawlers.json +1 -1
- package/lib/consts.js +2 -0
- package/lib/email-client/imap/mailbox.js +10 -2
- package/lib/email-client/imap/sync-operations.js +31 -6
- package/lib/email-client/imap-client.js +19 -3
- package/lib/email-client/outlook-client.js +154 -0
- package/lib/passkeys.js +56 -15
- package/lib/routes-ui.js +34 -25
- package/package.json +21 -21
- package/sbom.json +1 -1
- package/static/licenses.html +85 -144
- package/translations/de.mo +0 -0
- package/translations/de.po +98 -106
- package/translations/en.mo +0 -0
- package/translations/en.po +50 -46
- package/translations/et.mo +0 -0
- package/translations/et.po +67 -64
- package/translations/fr.mo +0 -0
- package/translations/fr.po +74 -71
- package/translations/ja.mo +0 -0
- package/translations/ja.po +64 -60
- package/translations/messages.pot +55 -51
- package/translations/nl.mo +0 -0
- package/translations/nl.po +66 -62
- package/translations/pl.mo +0 -0
- package/translations/pl.po +74 -71
- package/views/oauth-scope-error.hbs +10 -1
- package/workers/api.js +28 -2
- package/workers/imap.js +4 -0
package/workers/imap.js
CHANGED
|
@@ -658,6 +658,10 @@ class ConnectionHandler {
|
|
|
658
658
|
await connection.ensureSubscription({ clearExisting: true });
|
|
659
659
|
return true;
|
|
660
660
|
|
|
661
|
+
case 'missed':
|
|
662
|
+
logger.info({ msg: 'Handling missed notification lifecycle event', account: message.account });
|
|
663
|
+
return await connection.syncMissedMessages();
|
|
664
|
+
|
|
661
665
|
default:
|
|
662
666
|
logger.warn({ msg: 'Unknown subscription lifecycle event', event: message.event, account: message.account });
|
|
663
667
|
return false;
|