emailengine-app 2.61.1 → 2.61.2
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/CHANGELOG.md +9 -0
- package/data/google-crawlers.json +1 -1
- package/lib/account/account-state.js +248 -0
- package/lib/account.js +17 -178
- package/lib/api-routes/account-routes.js +1006 -0
- package/lib/api-routes/message-routes.js +1377 -0
- package/lib/consts.js +12 -2
- package/lib/email-client/base-client.js +282 -771
- package/lib/email-client/gmail/gmail-api.js +243 -0
- package/lib/email-client/gmail-client.js +145 -53
- package/lib/email-client/imap/mailbox.js +24 -698
- package/lib/email-client/imap/sync-operations.js +812 -0
- package/lib/email-client/imap-client.js +1 -1
- package/lib/email-client/message-builder.js +566 -0
- package/lib/email-client/notification-handler.js +314 -0
- package/lib/email-client/outlook/graph-api.js +326 -0
- package/lib/email-client/outlook-client.js +159 -113
- package/lib/email-client/smtp-pool-manager.js +196 -0
- package/lib/imapproxy/imap-server.js +3 -12
- package/lib/oauth/gmail.js +4 -4
- package/lib/oauth/mail-ru.js +30 -5
- package/lib/oauth/outlook.js +57 -3
- package/lib/oauth/pubsub/google.js +30 -11
- package/lib/oauth/scope-checker.js +202 -0
- package/lib/oauth2-apps.js +8 -4
- package/lib/redis-operations.js +484 -0
- package/lib/routes-ui.js +283 -2582
- package/lib/tools.js +4 -196
- package/lib/ui-routes/account-routes.js +1931 -0
- package/lib/ui-routes/admin-config-routes.js +1233 -0
- package/lib/ui-routes/admin-entities-routes.js +2367 -0
- package/lib/ui-routes/oauth-routes.js +992 -0
- package/lib/utils/network.js +237 -0
- package/package.json +9 -9
- package/sbom.json +1 -1
- package/static/js/app.js +5 -5
- package/static/licenses.html +78 -18
- package/translations/de.mo +0 -0
- package/translations/de.po +85 -82
- package/translations/en.mo +0 -0
- package/translations/en.po +63 -71
- package/translations/et.mo +0 -0
- package/translations/et.po +84 -82
- package/translations/fr.mo +0 -0
- package/translations/fr.po +85 -82
- package/translations/ja.mo +0 -0
- package/translations/ja.po +84 -82
- package/translations/messages.pot +74 -87
- package/translations/nl.mo +0 -0
- package/translations/nl.po +86 -82
- package/translations/pl.mo +0 -0
- package/translations/pl.po +84 -82
- package/views/account/security.hbs +4 -4
- package/views/accounts/account.hbs +13 -13
- package/views/accounts/register/imap-server.hbs +12 -12
- package/views/config/document-store/pre-processing/index.hbs +4 -2
- package/views/config/oauth/app.hbs +6 -7
- package/views/config/oauth/index.hbs +2 -2
- package/views/config/service.hbs +3 -4
- package/views/dashboard.hbs +5 -7
- package/views/error.hbs +22 -7
- package/views/gateways/gateway.hbs +2 -2
- package/views/partials/add_account_modal.hbs +7 -10
- package/views/partials/document_store_header.hbs +1 -1
- package/views/partials/editor_scope_info.hbs +0 -1
- package/views/partials/oauth_config_header.hbs +1 -1
- package/views/partials/side_menu.hbs +3 -3
- package/views/partials/webhook_form.hbs +2 -2
- package/views/templates/index.hbs +1 -1
- package/views/templates/template.hbs +8 -8
- package/views/tokens/index.hbs +6 -6
- package/views/tokens/new.hbs +1 -1
- package/views/webhooks/index.hbs +4 -4
- package/views/webhooks/webhook.hbs +7 -7
- package/workers/api.js +148 -2436
- package/workers/smtp.js +2 -1
- package/lib/imapproxy/imap-core/test/client.js +0 -46
- package/lib/imapproxy/imap-core/test/fixtures/append.eml +0 -1196
- package/lib/imapproxy/imap-core/test/fixtures/chunks.js +0 -44
- package/lib/imapproxy/imap-core/test/fixtures/fix1.eml +0 -6
- package/lib/imapproxy/imap-core/test/fixtures/fix2.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/fix3.eml +0 -32
- package/lib/imapproxy/imap-core/test/fixtures/fix4.eml +0 -6
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.js +0 -2740
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.json +0 -1411
- package/lib/imapproxy/imap-core/test/fixtures/mimetree.js +0 -85
- package/lib/imapproxy/imap-core/test/fixtures/nodemailer.eml +0 -582
- package/lib/imapproxy/imap-core/test/fixtures/ryan_finnie_mime_torture.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/simple.eml +0 -42
- package/lib/imapproxy/imap-core/test/fixtures/simple.json +0 -164
- package/lib/imapproxy/imap-core/test/imap-compile-stream-test.js +0 -671
- package/lib/imapproxy/imap-core/test/imap-compiler-test.js +0 -272
- package/lib/imapproxy/imap-core/test/imap-indexer-test.js +0 -236
- package/lib/imapproxy/imap-core/test/imap-parser-test.js +0 -922
- package/lib/imapproxy/imap-core/test/memory-notifier.js +0 -129
- package/lib/imapproxy/imap-core/test/prepare.sh +0 -74
- package/lib/imapproxy/imap-core/test/protocol-test.js +0 -1756
- package/lib/imapproxy/imap-core/test/search-test.js +0 -1356
- package/lib/imapproxy/imap-core/test/test-client.js +0 -152
- package/lib/imapproxy/imap-core/test/test-server.js +0 -623
- package/lib/imapproxy/imap-core/test/tools-test.js +0 -22
- package/test/api-test.js +0 -899
- package/test/autoreply-test.js +0 -327
- package/test/bounce-test.js +0 -151
- package/test/complaint-test.js +0 -256
- package/test/fixtures/autoreply/LICENSE +0 -27
- package/test/fixtures/autoreply/rfc3834-01.eml +0 -23
- package/test/fixtures/autoreply/rfc3834-02.eml +0 -24
- package/test/fixtures/autoreply/rfc3834-03.eml +0 -26
- package/test/fixtures/autoreply/rfc3834-04.eml +0 -48
- package/test/fixtures/autoreply/rfc3834-05.eml +0 -19
- package/test/fixtures/autoreply/rfc3834-06.eml +0 -59
- package/test/fixtures/bounces/163.eml +0 -2521
- package/test/fixtures/bounces/fastmail.eml +0 -242
- package/test/fixtures/bounces/gmail.eml +0 -252
- package/test/fixtures/bounces/hotmail.eml +0 -655
- package/test/fixtures/bounces/mailru.eml +0 -121
- package/test/fixtures/bounces/outlook.eml +0 -1107
- package/test/fixtures/bounces/postfix.eml +0 -101
- package/test/fixtures/bounces/rambler.eml +0 -116
- package/test/fixtures/bounces/workmail.eml +0 -142
- package/test/fixtures/bounces/yahoo.eml +0 -139
- package/test/fixtures/bounces/zoho.eml +0 -83
- package/test/fixtures/bounces/zonemta.eml +0 -100
- package/test/fixtures/complaints/LICENSE +0 -27
- package/test/fixtures/complaints/amazonses.eml +0 -72
- package/test/fixtures/complaints/dmarc.eml +0 -59
- package/test/fixtures/complaints/hotmail.eml +0 -49
- package/test/fixtures/complaints/optout.eml +0 -40
- package/test/fixtures/complaints/standard-arf.eml +0 -68
- package/test/fixtures/complaints/yahoo.eml +0 -68
- package/test/oauth2-apps-test.js +0 -301
- package/test/sendonly-test.js +0 -160
- package/test/test-config.js +0 -34
- package/test/webhooks-server.js +0 -39
package/static/js/app.js
CHANGED
|
@@ -286,25 +286,25 @@ document.addEventListener('DOMContentLoaded', () => {
|
|
|
286
286
|
if (error) {
|
|
287
287
|
switch (error.serverResponseCode) {
|
|
288
288
|
case 'ETIMEDOUT':
|
|
289
|
-
errorMessage = 'Connection timed out.
|
|
289
|
+
errorMessage = 'Connection timed out. Check your firewall settings and verify the port number.';
|
|
290
290
|
break;
|
|
291
291
|
case 'ClosedAfterConnectTLS':
|
|
292
|
-
errorMessage = 'Server
|
|
292
|
+
errorMessage = 'Server closed the connection unexpectedly. Try again or check server status.';
|
|
293
293
|
break;
|
|
294
294
|
case 'ClosedAfterConnectText':
|
|
295
295
|
errorMessage =
|
|
296
|
-
'
|
|
296
|
+
'Server closed the connection. This often means TLS is required but not enabled.';
|
|
297
297
|
break;
|
|
298
298
|
case 'ECONNREFUSED':
|
|
299
299
|
errorMessage =
|
|
300
|
-
'
|
|
300
|
+
'Connection refused. Verify the server is running and check the hostname and port.';
|
|
301
301
|
break;
|
|
302
302
|
}
|
|
303
303
|
}
|
|
304
304
|
|
|
305
305
|
stateLabel = {
|
|
306
306
|
type: 'danger',
|
|
307
|
-
name: '
|
|
307
|
+
name: 'Connection failed',
|
|
308
308
|
error: errorMessage
|
|
309
309
|
};
|
|
310
310
|
break;
|
package/static/licenses.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!doctype html><html><head><meta charset="utf-8"><title>EmailEngine Licenses</title><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous"></head><body>
|
|
2
2
|
<div class="container-fluid">
|
|
3
|
-
<h1>EmailEngine v2.61.
|
|
3
|
+
<h1>EmailEngine v2.61.1</h1><p>EmailEngine includes code from the following software packages:</p>
|
|
4
4
|
<table class="table table-sm">
|
|
5
5
|
<tr><thead class="thead-dark"><th>Package</th><th>Version</th><th>License</th><th>Publisher</th><th>Publisher's Email</th><th>Package URL</th></tr>
|
|
6
6
|
<tbody>
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
</tr>
|
|
217
217
|
<tr>
|
|
218
218
|
<td><a href="https://npmjs.com/package/@csstools/css-syntax-patches-for-csstree">@csstools/css-syntax-patches-for-csstree</a></td>
|
|
219
|
-
<td>1.0.
|
|
219
|
+
<td>1.0.25</td>
|
|
220
220
|
<td>MIT-0</td>
|
|
221
221
|
<td></td>
|
|
222
222
|
<td></td>
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
</tr>
|
|
257
257
|
<tr>
|
|
258
258
|
<td><a href="https://npmjs.com/package/@eslint-community/eslint-utils">@eslint-community/eslint-utils</a></td>
|
|
259
|
-
<td>4.9.
|
|
259
|
+
<td>4.9.1</td>
|
|
260
260
|
<td>MIT</td>
|
|
261
261
|
<td>Toru Nagashima</td>
|
|
262
262
|
<td></td>
|
|
@@ -786,7 +786,7 @@
|
|
|
786
786
|
</tr>
|
|
787
787
|
<tr>
|
|
788
788
|
<td><a href="https://npmjs.com/package/@ioredis/commands">@ioredis/commands</a></td>
|
|
789
|
-
<td>1.
|
|
789
|
+
<td>1.5.0</td>
|
|
790
790
|
<td>MIT</td>
|
|
791
791
|
<td>Zihua Li</td>
|
|
792
792
|
<td>i@zihua.li</td>
|
|
@@ -846,7 +846,7 @@
|
|
|
846
846
|
</tr>
|
|
847
847
|
<tr>
|
|
848
848
|
<td><a href="https://npmjs.com/package/@opentelemetry/core">@opentelemetry/core</a></td>
|
|
849
|
-
<td>2.
|
|
849
|
+
<td>2.3.0</td>
|
|
850
850
|
<td>Apache-2.0</td>
|
|
851
851
|
<td>OpenTelemetry Authors</td>
|
|
852
852
|
<td></td>
|
|
@@ -956,7 +956,7 @@
|
|
|
956
956
|
</tr>
|
|
957
957
|
<tr>
|
|
958
958
|
<td><a href="https://npmjs.com/package/@postalsys/gettext">@postalsys/gettext</a></td>
|
|
959
|
-
<td>4.1.
|
|
959
|
+
<td>4.1.1</td>
|
|
960
960
|
<td>MIT</td>
|
|
961
961
|
<td>Andris Reinman</td>
|
|
962
962
|
<td></td>
|
|
@@ -1586,7 +1586,7 @@
|
|
|
1586
1586
|
</tr>
|
|
1587
1587
|
<tr>
|
|
1588
1588
|
<td><a href="https://npmjs.com/package/bullmq">bullmq</a></td>
|
|
1589
|
-
<td>5.66.
|
|
1589
|
+
<td>5.66.5</td>
|
|
1590
1590
|
<td>MIT</td>
|
|
1591
1591
|
<td>Taskforce.sh Inc.</td>
|
|
1592
1592
|
<td></td>
|
|
@@ -1905,6 +1905,16 @@
|
|
|
1905
1905
|
</td
|
|
1906
1906
|
</tr>
|
|
1907
1907
|
<tr>
|
|
1908
|
+
<td><a href="https://npmjs.com/package/cookie-signature">cookie-signature</a></td>
|
|
1909
|
+
<td>1.2.2</td>
|
|
1910
|
+
<td>MIT</td>
|
|
1911
|
+
<td>TJ Holowaychuk</td>
|
|
1912
|
+
<td>tj@learnboost.com</td>
|
|
1913
|
+
<td>
|
|
1914
|
+
<a href="https://github.com/visionmedia/node-cookie-signature">github.com/visionmedia/node-cookie-signature</a>
|
|
1915
|
+
</td
|
|
1916
|
+
</tr>
|
|
1917
|
+
<tr>
|
|
1908
1918
|
<td><a href="https://npmjs.com/package/cookiejar">cookiejar</a></td>
|
|
1909
1919
|
<td>2.1.4</td>
|
|
1910
1920
|
<td>MIT</td>
|
|
@@ -1976,7 +1986,7 @@
|
|
|
1976
1986
|
</tr>
|
|
1977
1987
|
<tr>
|
|
1978
1988
|
<td><a href="https://npmjs.com/package/cssstyle">cssstyle</a></td>
|
|
1979
|
-
<td>5.3.
|
|
1989
|
+
<td>5.3.7</td>
|
|
1980
1990
|
<td>MIT</td>
|
|
1981
1991
|
<td></td>
|
|
1982
1992
|
<td></td>
|
|
@@ -2585,7 +2595,7 @@
|
|
|
2585
2595
|
</tr>
|
|
2586
2596
|
<tr>
|
|
2587
2597
|
<td><a href="https://npmjs.com/package/esquery">esquery</a></td>
|
|
2588
|
-
<td>1.
|
|
2598
|
+
<td>1.7.0</td>
|
|
2589
2599
|
<td>BSD-3-Clause</td>
|
|
2590
2600
|
<td>Joel Feenstra</td>
|
|
2591
2601
|
<td>jrfeenst+esquery@gmail.com</td>
|
|
@@ -3504,6 +3514,16 @@
|
|
|
3504
3514
|
</td
|
|
3505
3515
|
</tr>
|
|
3506
3516
|
<tr>
|
|
3517
|
+
<td><a href="https://npmjs.com/package/iconv-lite">iconv-lite</a></td>
|
|
3518
|
+
<td>0.7.2</td>
|
|
3519
|
+
<td>MIT</td>
|
|
3520
|
+
<td>Alexander Shtuchkin</td>
|
|
3521
|
+
<td>ashtuchkin@gmail.com</td>
|
|
3522
|
+
<td>
|
|
3523
|
+
<a href="https://github.com/pillarjs/iconv-lite">github.com/pillarjs/iconv-lite</a>
|
|
3524
|
+
</td
|
|
3525
|
+
</tr>
|
|
3526
|
+
<tr>
|
|
3507
3527
|
<td><a href="https://npmjs.com/package/ieee754">ieee754</a></td>
|
|
3508
3528
|
<td>1.2.1</td>
|
|
3509
3529
|
<td>BSD-3-Clause</td>
|
|
@@ -3525,7 +3545,7 @@
|
|
|
3525
3545
|
</tr>
|
|
3526
3546
|
<tr>
|
|
3527
3547
|
<td><a href="https://npmjs.com/package/imapflow">imapflow</a></td>
|
|
3528
|
-
<td>1.2.
|
|
3548
|
+
<td>1.2.6</td>
|
|
3529
3549
|
<td>MIT</td>
|
|
3530
3550
|
<td>Postal Systems OÜ</td>
|
|
3531
3551
|
<td></td>
|
|
@@ -3615,7 +3635,7 @@
|
|
|
3615
3635
|
</tr>
|
|
3616
3636
|
<tr>
|
|
3617
3637
|
<td><a href="https://npmjs.com/package/ioredis">ioredis</a></td>
|
|
3618
|
-
<td>5.
|
|
3638
|
+
<td>5.9.1</td>
|
|
3619
3639
|
<td>MIT</td>
|
|
3620
3640
|
<td>Zihua Li</td>
|
|
3621
3641
|
<td>i@zihua.li</td>
|
|
@@ -5004,6 +5024,16 @@
|
|
|
5004
5024
|
</td
|
|
5005
5025
|
</tr>
|
|
5006
5026
|
<tr>
|
|
5027
|
+
<td><a href="https://npmjs.com/package/pino-abstract-transport">pino-abstract-transport</a></td>
|
|
5028
|
+
<td>3.0.0</td>
|
|
5029
|
+
<td>MIT</td>
|
|
5030
|
+
<td>Matteo Collina</td>
|
|
5031
|
+
<td>hello@matteocollina.com</td>
|
|
5032
|
+
<td>
|
|
5033
|
+
<a href="https://github.com/pinojs/pino-abstract-transport">github.com/pinojs/pino-abstract-transport</a>
|
|
5034
|
+
</td
|
|
5035
|
+
</tr>
|
|
5036
|
+
<tr>
|
|
5007
5037
|
<td><a href="https://npmjs.com/package/pino-pretty">pino-pretty</a></td>
|
|
5008
5038
|
<td>13.0.0</td>
|
|
5009
5039
|
<td>MIT</td>
|
|
@@ -5035,6 +5065,16 @@
|
|
|
5035
5065
|
</tr>
|
|
5036
5066
|
<tr>
|
|
5037
5067
|
<td><a href="https://npmjs.com/package/pino">pino</a></td>
|
|
5068
|
+
<td>10.1.1</td>
|
|
5069
|
+
<td>MIT</td>
|
|
5070
|
+
<td>Matteo Collina</td>
|
|
5071
|
+
<td>hello@matteocollina.com</td>
|
|
5072
|
+
<td>
|
|
5073
|
+
<a href="https://github.com/pinojs/pino">github.com/pinojs/pino</a>
|
|
5074
|
+
</td
|
|
5075
|
+
</tr>
|
|
5076
|
+
<tr>
|
|
5077
|
+
<td><a href="https://npmjs.com/package/pino">pino</a></td>
|
|
5038
5078
|
<td>9.12.0</td>
|
|
5039
5079
|
<td>MIT</td>
|
|
5040
5080
|
<td>Matteo Collina</td>
|
|
@@ -5235,7 +5275,7 @@
|
|
|
5235
5275
|
</tr>
|
|
5236
5276
|
<tr>
|
|
5237
5277
|
<td><a href="https://npmjs.com/package/qs">qs</a></td>
|
|
5238
|
-
<td>6.14.
|
|
5278
|
+
<td>6.14.1</td>
|
|
5239
5279
|
<td>BSD-3-Clause</td>
|
|
5240
5280
|
<td></td>
|
|
5241
5281
|
<td></td>
|
|
@@ -5485,7 +5525,7 @@
|
|
|
5485
5525
|
</tr>
|
|
5486
5526
|
<tr>
|
|
5487
5527
|
<td><a href="https://npmjs.com/package/sax">sax</a></td>
|
|
5488
|
-
<td>1.4.
|
|
5528
|
+
<td>1.4.4</td>
|
|
5489
5529
|
<td>BlueOak-1.0.0</td>
|
|
5490
5530
|
<td>Isaac Z. Schlueter</td>
|
|
5491
5531
|
<td>i@izs.me</td>
|
|
@@ -5925,7 +5965,7 @@
|
|
|
5925
5965
|
</tr>
|
|
5926
5966
|
<tr>
|
|
5927
5967
|
<td><a href="https://npmjs.com/package/superagent">superagent</a></td>
|
|
5928
|
-
<td>10.
|
|
5968
|
+
<td>10.3.0</td>
|
|
5929
5969
|
<td>MIT</td>
|
|
5930
5970
|
<td>TJ Holowaychuk</td>
|
|
5931
5971
|
<td>tj@vision-media.ca</td>
|
|
@@ -5935,7 +5975,7 @@
|
|
|
5935
5975
|
</tr>
|
|
5936
5976
|
<tr>
|
|
5937
5977
|
<td><a href="https://npmjs.com/package/supertest">supertest</a></td>
|
|
5938
|
-
<td>7.
|
|
5978
|
+
<td>7.2.2</td>
|
|
5939
5979
|
<td>MIT</td>
|
|
5940
5980
|
<td>TJ Holowaychuk</td>
|
|
5941
5981
|
<td></td>
|
|
@@ -6024,6 +6064,16 @@
|
|
|
6024
6064
|
</td
|
|
6025
6065
|
</tr>
|
|
6026
6066
|
<tr>
|
|
6067
|
+
<td><a href="https://npmjs.com/package/thread-stream">thread-stream</a></td>
|
|
6068
|
+
<td>4.0.0</td>
|
|
6069
|
+
<td>MIT</td>
|
|
6070
|
+
<td>Matteo Collina</td>
|
|
6071
|
+
<td>hello@matteocollina.com</td>
|
|
6072
|
+
<td>
|
|
6073
|
+
<a href="https://github.com/mcollina/thread-stream">github.com/mcollina/thread-stream</a>
|
|
6074
|
+
</td
|
|
6075
|
+
</tr>
|
|
6076
|
+
<tr>
|
|
6027
6077
|
<td><a href="https://npmjs.com/package/timers-ext">timers-ext</a></td>
|
|
6028
6078
|
<td>0.1.8</td>
|
|
6029
6079
|
<td>ISC</td>
|
|
@@ -6225,7 +6275,7 @@
|
|
|
6225
6275
|
</tr>
|
|
6226
6276
|
<tr>
|
|
6227
6277
|
<td><a href="https://npmjs.com/package/undici">undici</a></td>
|
|
6228
|
-
<td>6.
|
|
6278
|
+
<td>6.23.0</td>
|
|
6229
6279
|
<td>MIT</td>
|
|
6230
6280
|
<td></td>
|
|
6231
6281
|
<td></td>
|
|
@@ -6244,6 +6294,16 @@
|
|
|
6244
6294
|
</td
|
|
6245
6295
|
</tr>
|
|
6246
6296
|
<tr>
|
|
6297
|
+
<td><a href="https://npmjs.com/package/undici">undici</a></td>
|
|
6298
|
+
<td>7.18.2</td>
|
|
6299
|
+
<td>MIT</td>
|
|
6300
|
+
<td></td>
|
|
6301
|
+
<td></td>
|
|
6302
|
+
<td>
|
|
6303
|
+
<a href="https://github.com/nodejs/undici">github.com/nodejs/undici</a>
|
|
6304
|
+
</td
|
|
6305
|
+
</tr>
|
|
6306
|
+
<tr>
|
|
6247
6307
|
<td><a href="https://npmjs.com/package/uri-js">uri-js</a></td>
|
|
6248
6308
|
<td>4.4.1</td>
|
|
6249
6309
|
<td>BSD-2-Clause</td>
|
|
@@ -6355,7 +6415,7 @@
|
|
|
6355
6415
|
</tr>
|
|
6356
6416
|
<tr>
|
|
6357
6417
|
<td><a href="https://npmjs.com/package/webidl-conversions">webidl-conversions</a></td>
|
|
6358
|
-
<td>8.0.
|
|
6418
|
+
<td>8.0.1</td>
|
|
6359
6419
|
<td>BSD-2-Clause</td>
|
|
6360
6420
|
<td>Domenic Denicola</td>
|
|
6361
6421
|
<td>d@domenic.me</td>
|
|
@@ -6475,7 +6535,7 @@
|
|
|
6475
6535
|
</tr>
|
|
6476
6536
|
<tr>
|
|
6477
6537
|
<td><a href="https://npmjs.com/package/ws">ws</a></td>
|
|
6478
|
-
<td>8.
|
|
6538
|
+
<td>8.19.0</td>
|
|
6479
6539
|
<td>MIT</td>
|
|
6480
6540
|
<td>Einar Otto Stangvik</td>
|
|
6481
6541
|
<td>einaros@gmail.com</td>
|
package/translations/de.mo
CHANGED
|
Binary file
|
package/translations/de.po
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: \n"
|
|
4
|
-
"POT-Creation-Date: 2025-
|
|
4
|
+
"POT-Creation-Date: 2025-12-29 11:35+0000\n"
|
|
5
5
|
"PO-Revision-Date: \n"
|
|
6
6
|
"Last-Translator: \n"
|
|
7
7
|
"Language-Team: \n"
|
|
@@ -10,7 +10,7 @@ msgstr ""
|
|
|
10
10
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
11
11
|
"Content-Transfer-Encoding: 8bit\n"
|
|
12
12
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
13
|
-
"X-Generator: Poedit 3.
|
|
13
|
+
"X-Generator: Poedit 3.8\n"
|
|
14
14
|
|
|
15
15
|
#: views/config/license.hbs:45
|
|
16
16
|
msgid "%d day"
|
|
@@ -18,6 +18,10 @@ msgid_plural "%d days"
|
|
|
18
18
|
msgstr[0] "%d Tag"
|
|
19
19
|
msgstr[1] "%d Tage"
|
|
20
20
|
|
|
21
|
+
#: views/redirect.hbs:1
|
|
22
|
+
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
23
|
+
msgstr "Klicken Sie <a href=\"%s\">hier</a>, um fortzufahren…"
|
|
24
|
+
|
|
21
25
|
#: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
|
|
22
26
|
msgid "Unsubscribe"
|
|
23
27
|
msgstr "Abmelden"
|
|
@@ -65,10 +69,6 @@ msgstr "E-Mail-Adresse"
|
|
|
65
69
|
msgid "Enter your email address"
|
|
66
70
|
msgstr "Geben Sie Ihre E-Mail-Adresse ein"
|
|
67
71
|
|
|
68
|
-
#: views/redirect.hbs:1
|
|
69
|
-
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
70
|
-
msgstr "Klicken Sie <a href=\"%s\">hier</a>, um fortzufahren…"
|
|
71
|
-
|
|
72
72
|
#: views/accounts/register/index.hbs:2
|
|
73
73
|
msgid "Choose your email account provider"
|
|
74
74
|
msgstr "Wählen Sie Ihren E-Mail-Kontoanbieter"
|
|
@@ -77,6 +77,28 @@ msgstr "Wählen Sie Ihren E-Mail-Kontoanbieter"
|
|
|
77
77
|
msgid "Standard IMAP"
|
|
78
78
|
msgstr "Standard IMAP"
|
|
79
79
|
|
|
80
|
+
#: views/accounts/register/imap.hbs:11
|
|
81
|
+
msgid "Your name"
|
|
82
|
+
msgstr "Ihr Name"
|
|
83
|
+
|
|
84
|
+
#: views/accounts/register/imap.hbs:17
|
|
85
|
+
msgid "Enter your full name"
|
|
86
|
+
msgstr "Gib deinen vollen Namen ein"
|
|
87
|
+
|
|
88
|
+
#: views/accounts/register/imap.hbs:31
|
|
89
|
+
#: views/accounts/register/imap-server.hbs:36
|
|
90
|
+
#: views/accounts/register/imap-server.hbs:128
|
|
91
|
+
msgid "Password"
|
|
92
|
+
msgstr "Passwort *"
|
|
93
|
+
|
|
94
|
+
#: views/accounts/register/imap.hbs:37
|
|
95
|
+
msgid "Enter your account password"
|
|
96
|
+
msgstr "Passwort für Ihr Konto eingeben"
|
|
97
|
+
|
|
98
|
+
#: views/accounts/register/imap.hbs:51
|
|
99
|
+
msgid "Continue"
|
|
100
|
+
msgstr "Weiter"
|
|
101
|
+
|
|
80
102
|
#: views/accounts/register/imap-server.hbs:19
|
|
81
103
|
msgid "IMAP"
|
|
82
104
|
msgstr "IMAP"
|
|
@@ -86,12 +108,6 @@ msgstr "IMAP"
|
|
|
86
108
|
msgid "Username"
|
|
87
109
|
msgstr "Benutzername"
|
|
88
110
|
|
|
89
|
-
#: views/accounts/register/imap-server.hbs:36
|
|
90
|
-
#: views/accounts/register/imap-server.hbs:128
|
|
91
|
-
#: views/accounts/register/imap.hbs:31
|
|
92
|
-
msgid "Password"
|
|
93
|
-
msgstr "Passwort *"
|
|
94
|
-
|
|
95
111
|
#: views/accounts/register/imap-server.hbs:45
|
|
96
112
|
#: views/accounts/register/imap-server.hbs:136
|
|
97
113
|
msgid "Important"
|
|
@@ -160,76 +176,61 @@ msgstr ""
|
|
|
160
176
|
"basierte Verschlüsselung zurück."
|
|
161
177
|
|
|
162
178
|
#: views/accounts/register/imap-server.hbs:209
|
|
163
|
-
msgid "
|
|
164
|
-
msgstr "
|
|
179
|
+
msgid "Verify connection"
|
|
180
|
+
msgstr "Verbindung pruefen"
|
|
165
181
|
|
|
166
182
|
#: views/accounts/register/imap-server.hbs:218
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
msgstr "Weiter"
|
|
183
|
+
msgid "Save and continue"
|
|
184
|
+
msgstr "Speichern und weiter"
|
|
170
185
|
|
|
171
186
|
#: views/accounts/register/imap-server.hbs:226
|
|
172
|
-
msgid "
|
|
173
|
-
msgstr "
|
|
187
|
+
msgid "Skip verification"
|
|
188
|
+
msgstr "Pruefung ueberspringen"
|
|
174
189
|
|
|
175
190
|
#: views/accounts/register/imap-server.hbs:241
|
|
176
|
-
msgid "
|
|
177
|
-
msgstr "
|
|
191
|
+
msgid "Connection test failed"
|
|
192
|
+
msgstr "Verbindungstest fehlgeschlagen"
|
|
178
193
|
|
|
179
194
|
#: views/accounts/register/imap-server.hbs:247
|
|
180
|
-
msgid "
|
|
195
|
+
msgid "We couldn't connect with these settings. Check the errors below."
|
|
181
196
|
msgstr ""
|
|
182
|
-
"
|
|
197
|
+
"Verbindung mit diesen Einstellungen nicht moeglich. Pruefen Sie die Fehler "
|
|
198
|
+
"unten."
|
|
183
199
|
|
|
184
200
|
#: views/accounts/register/imap-server.hbs:318
|
|
185
|
-
msgid "
|
|
186
|
-
msgstr "
|
|
201
|
+
msgid "Error"
|
|
202
|
+
msgstr "Fehler"
|
|
187
203
|
|
|
188
204
|
#: views/accounts/register/imap-server.hbs:320
|
|
189
|
-
msgid "
|
|
190
|
-
msgstr "
|
|
205
|
+
msgid "Invalid settings"
|
|
206
|
+
msgstr "Ungueltige Einstellungen"
|
|
191
207
|
|
|
192
208
|
#: views/accounts/register/imap-server.hbs:326
|
|
193
|
-
msgid "
|
|
194
|
-
msgstr "
|
|
209
|
+
msgid "Couldn't connect to IMAP server"
|
|
210
|
+
msgstr "Verbindung zum IMAP-Server nicht moeglich"
|
|
195
211
|
|
|
196
212
|
#: views/accounts/register/imap-server.hbs:328
|
|
197
|
-
|
|
198
|
-
|
|
213
|
+
#: views/accounts/register/imap-server.hbs:337
|
|
214
|
+
msgid "Server response:"
|
|
215
|
+
msgstr "Server-Antwort:"
|
|
199
216
|
|
|
200
217
|
#: views/accounts/register/imap-server.hbs:335
|
|
201
|
-
msgid "
|
|
202
|
-
msgstr "SMTP-
|
|
203
|
-
|
|
204
|
-
#: views/accounts/register/imap-server.hbs:337
|
|
205
|
-
msgid "SMTP Server responded with the following message:"
|
|
206
|
-
msgstr "Der SMTP-Server antwortete mit der folgenden Meldung:"
|
|
218
|
+
msgid "Couldn't connect to SMTP server"
|
|
219
|
+
msgstr "Verbindung zum SMTP-Server nicht moeglich"
|
|
207
220
|
|
|
208
221
|
#: views/accounts/register/imap-server.hbs:395
|
|
209
|
-
msgid "
|
|
210
|
-
msgstr "
|
|
211
|
-
|
|
212
|
-
#: views/accounts/register/imap.hbs:11
|
|
213
|
-
msgid "Your name"
|
|
214
|
-
msgstr "Ihr Name"
|
|
222
|
+
msgid "Request failed."
|
|
223
|
+
msgstr "Anfrage fehlgeschlagen."
|
|
215
224
|
|
|
216
|
-
#:
|
|
217
|
-
msgid "Enter your full name"
|
|
218
|
-
msgstr "Gib deinen vollen Namen ein"
|
|
219
|
-
|
|
220
|
-
#: views/accounts/register/imap.hbs:37
|
|
221
|
-
msgid "Enter your account password"
|
|
222
|
-
msgstr "Passwort für Ihr Konto eingeben"
|
|
223
|
-
|
|
224
|
-
#: lib/routes-ui.js:529
|
|
225
|
+
#: lib/routes-ui.js:532
|
|
225
226
|
msgid "Delegated"
|
|
226
227
|
msgstr "Delegiert"
|
|
227
228
|
|
|
228
|
-
#: lib/routes-ui.js:
|
|
229
|
+
#: lib/routes-ui.js:533
|
|
229
230
|
msgid "Using credentials from \"%s\""
|
|
230
231
|
msgstr "Verwendung von Anmeldeinformationen aus \"%s\""
|
|
231
232
|
|
|
232
|
-
#: lib/routes-ui.js:
|
|
233
|
+
#: lib/routes-ui.js:583
|
|
233
234
|
msgid ""
|
|
234
235
|
"Connection timed out. This usually occurs if you are behind a firewall or "
|
|
235
236
|
"connecting to the wrong port."
|
|
@@ -238,11 +239,11 @@ msgstr ""
|
|
|
238
239
|
"sich hinter einer Firewall befinden oder eine Verbindung zum falschen Port "
|
|
239
240
|
"herstellen."
|
|
240
241
|
|
|
241
|
-
#: lib/routes-ui.js:
|
|
242
|
+
#: lib/routes-ui.js:586
|
|
242
243
|
msgid "The server unexpectedly closed the connection."
|
|
243
244
|
msgstr "Der Server hat die Verbindung unerwartet geschlossen."
|
|
244
245
|
|
|
245
|
-
#: lib/routes-ui.js:
|
|
246
|
+
#: lib/routes-ui.js:589
|
|
246
247
|
msgid ""
|
|
247
248
|
"The server unexpectedly closed the connection. This usually happens when "
|
|
248
249
|
"attempting to connect to a TLS port without TLS enabled."
|
|
@@ -251,7 +252,7 @@ msgstr ""
|
|
|
251
252
|
"Regel, wenn versucht wird, eine Verbindung zu einem TLS-Port ohne "
|
|
252
253
|
"aktiviertes TLS herzustellen."
|
|
253
254
|
|
|
254
|
-
#: lib/routes-ui.js:
|
|
255
|
+
#: lib/routes-ui.js:594
|
|
255
256
|
msgid ""
|
|
256
257
|
"The server refused the connection. This typically occurs if the server is "
|
|
257
258
|
"not running, is overloaded, or you are connecting to the wrong host or port."
|
|
@@ -260,62 +261,54 @@ msgstr ""
|
|
|
260
261
|
"der Server nicht läuft, überlastet ist oder Sie sich mit dem falschen Host "
|
|
261
262
|
"oder Port verbinden."
|
|
262
263
|
|
|
263
|
-
#: lib/routes-ui.js:
|
|
264
|
+
#: lib/routes-ui.js:712
|
|
264
265
|
msgid "Invalid API key for OpenAI"
|
|
265
266
|
msgstr "Ungültiger API-Schlüssel für OpenAI"
|
|
266
267
|
|
|
267
|
-
#: lib/routes-ui.js:
|
|
268
|
+
#: lib/routes-ui.js:5031 lib/routes-ui.js:6986 lib/routes-ui.js:6997
|
|
268
269
|
msgid "Server hostname was not found"
|
|
269
270
|
msgstr "Server-Hostname wurde nicht gefunden"
|
|
270
271
|
|
|
271
|
-
#: lib/routes-ui.js:
|
|
272
|
+
#: lib/routes-ui.js:5034 lib/routes-ui.js:6989 lib/routes-ui.js:7000
|
|
272
273
|
msgid "Invalid username or password"
|
|
273
274
|
msgstr "Ungültiger Benutzername oder Passwort"
|
|
274
275
|
|
|
275
|
-
#: lib/routes-ui.js:
|
|
276
|
+
#: lib/routes-ui.js:5038 lib/routes-ui.js:7004
|
|
276
277
|
msgid "TLS protocol error"
|
|
277
278
|
msgstr "TLS-Protokollfehler"
|
|
278
279
|
|
|
279
|
-
#: lib/routes-ui.js:
|
|
280
|
-
#: lib/routes-ui.js:
|
|
281
|
-
#: workers/api.js:
|
|
280
|
+
#: lib/routes-ui.js:6733 lib/routes-ui.js:6768 lib/routes-ui.js:6883
|
|
281
|
+
#: lib/routes-ui.js:6930 lib/routes-ui.js:7159 lib/routes-ui.js:7195
|
|
282
|
+
#: workers/api.js:2407
|
|
282
283
|
msgid "Email Account Setup"
|
|
283
284
|
msgstr "E-Mail-Konto einrichten"
|
|
284
285
|
|
|
285
|
-
#: lib/routes-ui.js:
|
|
286
|
-
msgid "
|
|
287
|
-
msgstr "Validierung der Anforderungsargumente fehlgeschlagen"
|
|
288
|
-
|
|
289
|
-
#: lib/routes-ui.js:6895 lib/routes-ui.js:7160
|
|
290
|
-
msgid "Failed to process account"
|
|
291
|
-
msgstr "Konto konnte nicht bearbeitet werden"
|
|
286
|
+
#: lib/routes-ui.js:6793 lib/routes-ui.js:6826 lib/routes-ui.js:9745
|
|
287
|
+
msgid "Invalid request. Check your input and try again."
|
|
288
|
+
msgstr "Validierung der Anforderungsargumente fehlgeschlagen."
|
|
292
289
|
|
|
293
|
-
#: lib/routes-ui.js:
|
|
290
|
+
#: lib/routes-ui.js:9708 lib/tools.js:794
|
|
294
291
|
msgid "Invalid input"
|
|
295
292
|
msgstr "Ungültige Eingabe"
|
|
296
293
|
|
|
297
|
-
#: lib/routes-ui.js:
|
|
298
|
-
#: lib/routes-ui.js:
|
|
294
|
+
#: lib/routes-ui.js:9718 lib/routes-ui.js:9836 lib/routes-ui.js:9853
|
|
295
|
+
#: lib/routes-ui.js:9889
|
|
299
296
|
msgid "Subscription Management"
|
|
300
297
|
msgstr "Mitgliederverwaltung"
|
|
301
298
|
|
|
302
|
-
#:
|
|
303
|
-
msgid "Failed to process request"
|
|
304
|
-
msgstr "Anfrage konnte nicht bearbeitet werden"
|
|
305
|
-
|
|
306
|
-
#: workers/api.js:8996 workers/api.js:9112
|
|
299
|
+
#: workers/api.js:9113 workers/api.js:9229
|
|
307
300
|
msgid "Requested page not found"
|
|
308
301
|
msgstr "Gewünschte Seite nicht gefunden"
|
|
309
302
|
|
|
310
|
-
#: workers/api.js:
|
|
303
|
+
#: workers/api.js:9114
|
|
311
304
|
msgid "Something went wrong"
|
|
312
305
|
msgstr "Leider ist ein Fehler aufgetreten"
|
|
313
306
|
|
|
314
|
-
#: lib/tools.js:
|
|
307
|
+
#: lib/tools.js:1493
|
|
315
308
|
msgid "Signature validation failed"
|
|
316
309
|
msgstr "Signaturüberprüfung fehlgeschlagen"
|
|
317
310
|
|
|
318
|
-
#: lib/tools.js:
|
|
311
|
+
#: lib/tools.js:1502 lib/tools.js:1507
|
|
319
312
|
msgid "Invalid or expired account setup URL"
|
|
320
313
|
msgstr "Ungültige oder abgelaufene URL für die Kontoeinrichtung"
|
|
321
314
|
|
|
@@ -331,5 +324,15 @@ msgstr ""
|
|
|
331
324
|
"deaktiviert. Um fortzufahren, verwenden Sie bitte die Schaltfläche \"Sign in "
|
|
332
325
|
"with Microsoft\", um Ihr Konto sicher zu verbinden."
|
|
333
326
|
|
|
327
|
+
#, fuzzy
|
|
328
|
+
#~| msgid "Failed to process account"
|
|
329
|
+
#~ msgid "Couldn't set up account. Try again."
|
|
330
|
+
#~ msgstr "Konto konnte nicht bearbeitet werden"
|
|
331
|
+
|
|
332
|
+
#, fuzzy
|
|
333
|
+
#~| msgid "Failed to process request"
|
|
334
|
+
#~ msgid "Couldn't process request. Try again."
|
|
335
|
+
#~ msgstr "Anfrage konnte nicht bearbeitet werden"
|
|
336
|
+
|
|
334
337
|
#~ msgid "Unknown OAuth provider"
|
|
335
338
|
#~ msgstr "Unbekannter OAuth-Anbieter"
|
package/translations/en.mo
CHANGED
|
Binary file
|