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.
Files changed (136) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/data/google-crawlers.json +1 -1
  3. package/lib/account/account-state.js +248 -0
  4. package/lib/account.js +17 -178
  5. package/lib/api-routes/account-routes.js +1006 -0
  6. package/lib/api-routes/message-routes.js +1377 -0
  7. package/lib/consts.js +12 -2
  8. package/lib/email-client/base-client.js +282 -771
  9. package/lib/email-client/gmail/gmail-api.js +243 -0
  10. package/lib/email-client/gmail-client.js +145 -53
  11. package/lib/email-client/imap/mailbox.js +24 -698
  12. package/lib/email-client/imap/sync-operations.js +812 -0
  13. package/lib/email-client/imap-client.js +1 -1
  14. package/lib/email-client/message-builder.js +566 -0
  15. package/lib/email-client/notification-handler.js +314 -0
  16. package/lib/email-client/outlook/graph-api.js +326 -0
  17. package/lib/email-client/outlook-client.js +159 -113
  18. package/lib/email-client/smtp-pool-manager.js +196 -0
  19. package/lib/imapproxy/imap-server.js +3 -12
  20. package/lib/oauth/gmail.js +4 -4
  21. package/lib/oauth/mail-ru.js +30 -5
  22. package/lib/oauth/outlook.js +57 -3
  23. package/lib/oauth/pubsub/google.js +30 -11
  24. package/lib/oauth/scope-checker.js +202 -0
  25. package/lib/oauth2-apps.js +8 -4
  26. package/lib/redis-operations.js +484 -0
  27. package/lib/routes-ui.js +283 -2582
  28. package/lib/tools.js +4 -196
  29. package/lib/ui-routes/account-routes.js +1931 -0
  30. package/lib/ui-routes/admin-config-routes.js +1233 -0
  31. package/lib/ui-routes/admin-entities-routes.js +2367 -0
  32. package/lib/ui-routes/oauth-routes.js +992 -0
  33. package/lib/utils/network.js +237 -0
  34. package/package.json +9 -9
  35. package/sbom.json +1 -1
  36. package/static/js/app.js +5 -5
  37. package/static/licenses.html +78 -18
  38. package/translations/de.mo +0 -0
  39. package/translations/de.po +85 -82
  40. package/translations/en.mo +0 -0
  41. package/translations/en.po +63 -71
  42. package/translations/et.mo +0 -0
  43. package/translations/et.po +84 -82
  44. package/translations/fr.mo +0 -0
  45. package/translations/fr.po +85 -82
  46. package/translations/ja.mo +0 -0
  47. package/translations/ja.po +84 -82
  48. package/translations/messages.pot +74 -87
  49. package/translations/nl.mo +0 -0
  50. package/translations/nl.po +86 -82
  51. package/translations/pl.mo +0 -0
  52. package/translations/pl.po +84 -82
  53. package/views/account/security.hbs +4 -4
  54. package/views/accounts/account.hbs +13 -13
  55. package/views/accounts/register/imap-server.hbs +12 -12
  56. package/views/config/document-store/pre-processing/index.hbs +4 -2
  57. package/views/config/oauth/app.hbs +6 -7
  58. package/views/config/oauth/index.hbs +2 -2
  59. package/views/config/service.hbs +3 -4
  60. package/views/dashboard.hbs +5 -7
  61. package/views/error.hbs +22 -7
  62. package/views/gateways/gateway.hbs +2 -2
  63. package/views/partials/add_account_modal.hbs +7 -10
  64. package/views/partials/document_store_header.hbs +1 -1
  65. package/views/partials/editor_scope_info.hbs +0 -1
  66. package/views/partials/oauth_config_header.hbs +1 -1
  67. package/views/partials/side_menu.hbs +3 -3
  68. package/views/partials/webhook_form.hbs +2 -2
  69. package/views/templates/index.hbs +1 -1
  70. package/views/templates/template.hbs +8 -8
  71. package/views/tokens/index.hbs +6 -6
  72. package/views/tokens/new.hbs +1 -1
  73. package/views/webhooks/index.hbs +4 -4
  74. package/views/webhooks/webhook.hbs +7 -7
  75. package/workers/api.js +148 -2436
  76. package/workers/smtp.js +2 -1
  77. package/lib/imapproxy/imap-core/test/client.js +0 -46
  78. package/lib/imapproxy/imap-core/test/fixtures/append.eml +0 -1196
  79. package/lib/imapproxy/imap-core/test/fixtures/chunks.js +0 -44
  80. package/lib/imapproxy/imap-core/test/fixtures/fix1.eml +0 -6
  81. package/lib/imapproxy/imap-core/test/fixtures/fix2.eml +0 -599
  82. package/lib/imapproxy/imap-core/test/fixtures/fix3.eml +0 -32
  83. package/lib/imapproxy/imap-core/test/fixtures/fix4.eml +0 -6
  84. package/lib/imapproxy/imap-core/test/fixtures/mimetorture.eml +0 -599
  85. package/lib/imapproxy/imap-core/test/fixtures/mimetorture.js +0 -2740
  86. package/lib/imapproxy/imap-core/test/fixtures/mimetorture.json +0 -1411
  87. package/lib/imapproxy/imap-core/test/fixtures/mimetree.js +0 -85
  88. package/lib/imapproxy/imap-core/test/fixtures/nodemailer.eml +0 -582
  89. package/lib/imapproxy/imap-core/test/fixtures/ryan_finnie_mime_torture.eml +0 -599
  90. package/lib/imapproxy/imap-core/test/fixtures/simple.eml +0 -42
  91. package/lib/imapproxy/imap-core/test/fixtures/simple.json +0 -164
  92. package/lib/imapproxy/imap-core/test/imap-compile-stream-test.js +0 -671
  93. package/lib/imapproxy/imap-core/test/imap-compiler-test.js +0 -272
  94. package/lib/imapproxy/imap-core/test/imap-indexer-test.js +0 -236
  95. package/lib/imapproxy/imap-core/test/imap-parser-test.js +0 -922
  96. package/lib/imapproxy/imap-core/test/memory-notifier.js +0 -129
  97. package/lib/imapproxy/imap-core/test/prepare.sh +0 -74
  98. package/lib/imapproxy/imap-core/test/protocol-test.js +0 -1756
  99. package/lib/imapproxy/imap-core/test/search-test.js +0 -1356
  100. package/lib/imapproxy/imap-core/test/test-client.js +0 -152
  101. package/lib/imapproxy/imap-core/test/test-server.js +0 -623
  102. package/lib/imapproxy/imap-core/test/tools-test.js +0 -22
  103. package/test/api-test.js +0 -899
  104. package/test/autoreply-test.js +0 -327
  105. package/test/bounce-test.js +0 -151
  106. package/test/complaint-test.js +0 -256
  107. package/test/fixtures/autoreply/LICENSE +0 -27
  108. package/test/fixtures/autoreply/rfc3834-01.eml +0 -23
  109. package/test/fixtures/autoreply/rfc3834-02.eml +0 -24
  110. package/test/fixtures/autoreply/rfc3834-03.eml +0 -26
  111. package/test/fixtures/autoreply/rfc3834-04.eml +0 -48
  112. package/test/fixtures/autoreply/rfc3834-05.eml +0 -19
  113. package/test/fixtures/autoreply/rfc3834-06.eml +0 -59
  114. package/test/fixtures/bounces/163.eml +0 -2521
  115. package/test/fixtures/bounces/fastmail.eml +0 -242
  116. package/test/fixtures/bounces/gmail.eml +0 -252
  117. package/test/fixtures/bounces/hotmail.eml +0 -655
  118. package/test/fixtures/bounces/mailru.eml +0 -121
  119. package/test/fixtures/bounces/outlook.eml +0 -1107
  120. package/test/fixtures/bounces/postfix.eml +0 -101
  121. package/test/fixtures/bounces/rambler.eml +0 -116
  122. package/test/fixtures/bounces/workmail.eml +0 -142
  123. package/test/fixtures/bounces/yahoo.eml +0 -139
  124. package/test/fixtures/bounces/zoho.eml +0 -83
  125. package/test/fixtures/bounces/zonemta.eml +0 -100
  126. package/test/fixtures/complaints/LICENSE +0 -27
  127. package/test/fixtures/complaints/amazonses.eml +0 -72
  128. package/test/fixtures/complaints/dmarc.eml +0 -59
  129. package/test/fixtures/complaints/hotmail.eml +0 -49
  130. package/test/fixtures/complaints/optout.eml +0 -40
  131. package/test/fixtures/complaints/standard-arf.eml +0 -68
  132. package/test/fixtures/complaints/yahoo.eml +0 -68
  133. package/test/oauth2-apps-test.js +0 -301
  134. package/test/sendonly-test.js +0 -160
  135. package/test/test-config.js +0 -34
  136. 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. This usually happens when you are firewalled, for example are connecting to a wrong port.';
289
+ errorMessage = 'Connection timed out. Check your firewall settings and verify the port number.';
290
290
  break;
291
291
  case 'ClosedAfterConnectTLS':
292
- errorMessage = 'Server unexpectedly closed the connection.';
292
+ errorMessage = 'Server closed the connection unexpectedly. Try again or check server status.';
293
293
  break;
294
294
  case 'ClosedAfterConnectText':
295
295
  errorMessage =
296
- 'The server unexpectedly closed the connection. This usually happens when you try to connect to a TLS port without having TLS enabled.';
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
- 'The server refused the connection. This usually happens when the server is not running, is overloaded, or you are connecting to a wrong host or port.';
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: 'Failed',
307
+ name: 'Connection failed',
308
308
  error: errorMessage
309
309
  };
310
310
  break;
@@ -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.0</h1><p>EmailEngine includes code from the following software packages:</p>
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.22</td>
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.0</td>
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.4.0</td>
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.2.0</td>
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.0</td>
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.4</td>
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.5</td>
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.6.0</td>
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.4</td>
3548
+ <td>1.2.6</td>
3529
3549
  <td>MIT</td>
3530
3550
  <td>Postal Systems O&#xDC;</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.8.2</td>
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.0</td>
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.3</td>
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.2.3</td>
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.1.4</td>
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.22.0</td>
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.0</td>
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.18.3</td>
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>
Binary file
@@ -1,7 +1,7 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2025-08-13 10:54+0000\n"
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.6\n"
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&mldr;"
23
+ msgstr "Klicken Sie <a href=\"%s\">hier</a>, um fortzufahren&mldr;"
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&mldr;"
70
- msgstr "Klicken Sie <a href=\"%s\">hier</a>, um fortzufahren&mldr;"
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 "Test settings"
164
- msgstr "Test-Einstellungen"
179
+ msgid "Verify connection"
180
+ msgstr "Verbindung pruefen"
165
181
 
166
182
  #: views/accounts/register/imap-server.hbs:218
167
- #: views/accounts/register/imap.hbs:51
168
- msgid "Continue"
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 "Continue without testing"
173
- msgstr "Ohne Prüfung fortfahren"
187
+ msgid "Skip verification"
188
+ msgstr "Pruefung ueberspringen"
174
189
 
175
190
  #: views/accounts/register/imap-server.hbs:241
176
- msgid "Test failed"
177
- msgstr "Test fehlgeschlagen"
191
+ msgid "Connection test failed"
192
+ msgstr "Verbindungstest fehlgeschlagen"
178
193
 
179
194
  #: views/accounts/register/imap-server.hbs:247
180
- msgid "Failed to validate provided email server settings."
195
+ msgid "We couldn't connect with these settings. Check the errors below."
181
196
  msgstr ""
182
- "Die angegebenen E-Mail-Server-Einstellungen konnten nicht validiert werden."
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 "General Error"
186
- msgstr "Allgemeiner Fehler"
201
+ msgid "Error"
202
+ msgstr "Fehler"
187
203
 
188
204
  #: views/accounts/register/imap-server.hbs:320
189
- msgid "Validation Error"
190
- msgstr "Validierungsfehler"
205
+ msgid "Invalid settings"
206
+ msgstr "Ungueltige Einstellungen"
191
207
 
192
208
  #: views/accounts/register/imap-server.hbs:326
193
- msgid "Failed to validate IMAP server settings"
194
- msgstr "Validierung der IMAP-Servereinstellungen fehlgeschlagen"
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
- msgid "IMAP Server responded with the following message:"
198
- msgstr "Der IMAP-Server antwortete mit der folgenden Meldung:"
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 "Failed to validate SMTP server settings"
202
- msgstr "SMTP-Servereinstellungen konnten nicht validiert werden"
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 "HTTP error!"
210
- msgstr "HTTP-Fehler!"
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
- #: views/accounts/register/imap.hbs:17
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:530
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:580
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:583
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:586
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:591
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:709
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:5006 lib/routes-ui.js:6958 lib/routes-ui.js:6969
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:5009 lib/routes-ui.js:6961 lib/routes-ui.js:6972
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:5013 lib/routes-ui.js:6976
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:6705 lib/routes-ui.js:6740 lib/routes-ui.js:6855
280
- #: lib/routes-ui.js:6902 lib/routes-ui.js:7131 lib/routes-ui.js:7167
281
- #: workers/api.js:2346
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:6765 lib/routes-ui.js:6798 lib/routes-ui.js:9717
286
- msgid "Failed to validate request arguments"
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:9680 lib/tools.js:795
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:9690 lib/routes-ui.js:9808 lib/routes-ui.js:9825
298
- #: lib/routes-ui.js:9861
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
- #: lib/routes-ui.js:9819 lib/routes-ui.js:9854
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:8997
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:1494
307
+ #: lib/tools.js:1493
315
308
  msgid "Signature validation failed"
316
309
  msgstr "Signaturüberprüfung fehlgeschlagen"
317
310
 
318
- #: lib/tools.js:1503 lib/tools.js:1508
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"
Binary file