emailengine-app 2.63.4 → 2.65.0

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.
Files changed (59) hide show
  1. package/.github/workflows/test.yml +4 -0
  2. package/CHANGELOG.md +70 -0
  3. package/copy-static-files.sh +1 -1
  4. package/data/google-crawlers.json +1 -1
  5. package/eslint.config.js +2 -0
  6. package/lib/account.js +13 -9
  7. package/lib/api-routes/account-routes.js +7 -1
  8. package/lib/consts.js +17 -1
  9. package/lib/email-client/gmail/gmail-api.js +1 -12
  10. package/lib/email-client/imap-client.js +5 -3
  11. package/lib/email-client/outlook/graph-api.js +9 -15
  12. package/lib/email-client/outlook-client.js +406 -177
  13. package/lib/export.js +17 -0
  14. package/lib/imapproxy/imap-server.js +3 -2
  15. package/lib/oauth/gmail.js +12 -1
  16. package/lib/oauth/outlook.js +99 -1
  17. package/lib/oauth/pubsub/google.js +253 -85
  18. package/lib/oauth2-apps.js +620 -389
  19. package/lib/outbox.js +1 -1
  20. package/lib/routes-ui.js +193 -238
  21. package/lib/schemas.js +189 -12
  22. package/lib/ui-routes/account-routes.js +7 -2
  23. package/lib/ui-routes/admin-entities-routes.js +3 -3
  24. package/lib/ui-routes/oauth-routes.js +27 -175
  25. package/package.json +21 -21
  26. package/sbom.json +1 -1
  27. package/server.js +54 -22
  28. package/static/licenses.html +30 -90
  29. package/translations/de.mo +0 -0
  30. package/translations/de.po +54 -42
  31. package/translations/en.mo +0 -0
  32. package/translations/en.po +55 -43
  33. package/translations/et.mo +0 -0
  34. package/translations/et.po +54 -42
  35. package/translations/fr.mo +0 -0
  36. package/translations/fr.po +54 -42
  37. package/translations/ja.mo +0 -0
  38. package/translations/ja.po +54 -42
  39. package/translations/messages.pot +93 -71
  40. package/translations/nl.mo +0 -0
  41. package/translations/nl.po +54 -42
  42. package/translations/pl.mo +0 -0
  43. package/translations/pl.po +54 -42
  44. package/views/config/oauth/app.hbs +12 -0
  45. package/views/config/oauth/edit.hbs +2 -0
  46. package/views/config/oauth/index.hbs +4 -1
  47. package/views/config/oauth/new.hbs +2 -0
  48. package/views/config/oauth/subscriptions.hbs +175 -0
  49. package/views/error.hbs +4 -4
  50. package/views/partials/oauth_form.hbs +179 -4
  51. package/views/partials/oauth_tabs.hbs +8 -0
  52. package/views/partials/scope_info.hbs +10 -0
  53. package/workers/api.js +174 -96
  54. package/workers/documents.js +1 -0
  55. package/workers/export.js +6 -2
  56. package/workers/imap.js +33 -49
  57. package/workers/smtp.js +1 -0
  58. package/workers/submit.js +1 -0
  59. package/workers/webhooks.js +42 -30
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emailengine-app",
3
- "version": "2.63.4",
3
+ "version": "2.65.0",
4
4
  "private": false,
5
5
  "productTitle": "EmailEngine",
6
6
  "description": "Email Sync Engine",
@@ -44,8 +44,8 @@
44
44
  "homepage": "https://emailengine.app/",
45
45
  "dependencies": {
46
46
  "@bugsnag/js": "8.8.1",
47
- "@bull-board/api": "6.20.3",
48
- "@bull-board/hapi": "6.20.3",
47
+ "@bull-board/api": "6.20.6",
48
+ "@bull-board/hapi": "6.20.6",
49
49
  "@elastic/elasticsearch": "8.15.3",
50
50
  "@hapi/accept": "6.0.3",
51
51
  "@hapi/bell": "13.1.0",
@@ -56,11 +56,11 @@
56
56
  "@hapi/inert": "7.1.0",
57
57
  "@hapi/vision": "7.0.3",
58
58
  "@phc/pbkdf2": "1.1.14",
59
- "@postalsys/bounce-classifier": "^2.0.0",
60
- "@postalsys/certs": "1.0.12",
59
+ "@postalsys/bounce-classifier": "^2.4.0",
60
+ "@postalsys/certs": "1.0.14",
61
61
  "@postalsys/ee-client": "1.3.0",
62
- "@postalsys/email-ai-tools": "1.11.4",
63
- "@postalsys/email-text-tools": "2.4.2",
62
+ "@postalsys/email-ai-tools": "1.12.1",
63
+ "@postalsys/email-text-tools": "2.4.3",
64
64
  "@postalsys/gettext": "4.1.1",
65
65
  "@postalsys/joi-messages": "1.0.5",
66
66
  "@postalsys/templates": "2.0.0",
@@ -68,7 +68,7 @@
68
68
  "@zone-eu/wild-config": "1.7.3",
69
69
  "ace-builds": "1.43.6",
70
70
  "base32.js": "0.1.0",
71
- "bullmq": "5.70.4",
71
+ "bullmq": "5.71.0",
72
72
  "compare-versions": "6.1.1",
73
73
  "dotenv": "17.3.1",
74
74
  "encoding-japanese": "2.2.0",
@@ -82,9 +82,9 @@
82
82
  "html-to-text": "9.0.5",
83
83
  "ical.js": "1.5.0",
84
84
  "iconv-lite": "0.7.2",
85
- "imapflow": "1.2.13",
86
- "ioredfour": "1.4.0",
87
- "ioredis": "5.10.0",
85
+ "imapflow": "1.2.16",
86
+ "ioredfour": "1.4.1",
87
+ "ioredis": "5.10.1",
88
88
  "ipaddr.js": "2.3.0",
89
89
  "joi": "17.13.3",
90
90
  "jquery": "4.0.0",
@@ -92,33 +92,33 @@
92
92
  "libmime": "5.3.7",
93
93
  "libqp": "2.1.1",
94
94
  "license-checker": "25.0.1",
95
- "mailparser": "3.9.4",
95
+ "mailparser": "3.9.5",
96
96
  "marked": "9.1.6",
97
97
  "minimist": "1.2.8",
98
98
  "msgpack5": "6.0.2",
99
99
  "murmurhash": "2.0.1",
100
100
  "nanoid": "3.3.8",
101
- "nodemailer": "8.0.2",
101
+ "nodemailer": "8.0.3",
102
102
  "pino": "10.3.1",
103
103
  "popper.js": "1.16.1",
104
104
  "prom-client": "15.1.3",
105
105
  "psl": "1.15.0",
106
- "pubface": "1.0.18",
106
+ "pubface": "1.0.19",
107
107
  "punycode.js": "2.3.1",
108
108
  "qrcode": "1.5.4",
109
- "smtp-server": "3.18.1",
109
+ "smtp-server": "3.18.2",
110
110
  "socks": "2.8.7",
111
111
  "speakeasy": "2.0.0",
112
112
  "startbootstrap-sb-admin-2": "3.3.7",
113
113
  "timezones-list": "3.1.0",
114
- "undici": "7.22.0",
114
+ "undici": "7.24.5",
115
115
  "xml2js": "0.6.2"
116
116
  },
117
117
  "devDependencies": {
118
118
  "@eslint/js": "10.0.1",
119
119
  "chai": "4.3.10",
120
120
  "eerawlog": "1.5.1",
121
- "eslint": "10.0.3",
121
+ "eslint": "10.1.0",
122
122
  "grunt": "1.6.1",
123
123
  "grunt-cli": "1.5.0",
124
124
  "grunt-shell-spawn": "0.5.0",
@@ -160,10 +160,10 @@
160
160
  "sbom.json"
161
161
  ],
162
162
  "targets": [
163
- "node22-linux-x64",
164
- "node22-macos-x64",
165
- "node22-macos-arm64",
166
- "node22-win-x64"
163
+ "node24-linux-x64",
164
+ "node24-macos-x64",
165
+ "node24-macos-arm64",
166
+ "node24-win-x64"
167
167
  ],
168
168
  "outputPath": "ee-dist",
169
169
  "options": {