emailengine-app 2.61.5 → 2.62.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.
- package/CHANGELOG.md +78 -0
- package/data/google-crawlers.json +1 -1
- package/lib/account.js +20 -7
- package/lib/api-routes/account-routes.js +28 -5
- package/lib/api-routes/chat-routes.js +1 -1
- package/lib/api-routes/export-routes.js +316 -0
- package/lib/api-routes/message-routes.js +28 -23
- package/lib/api-routes/template-routes.js +28 -7
- package/lib/arf-detect.js +1 -1
- package/lib/consts.js +16 -0
- package/lib/db.js +3 -0
- package/lib/email-client/base-client.js +6 -4
- package/lib/email-client/gmail-client.js +204 -33
- package/lib/email-client/imap/mailbox.js +99 -8
- package/lib/email-client/imap/subconnection.js +5 -5
- package/lib/email-client/imap-client.js +76 -16
- package/lib/email-client/message-builder.js +3 -1
- package/lib/email-client/notification-handler.js +12 -9
- package/lib/email-client/outlook-client.js +362 -69
- package/lib/email-client/smtp-pool-manager.js +1 -1
- package/lib/export.js +528 -0
- package/lib/oauth/gmail.js +21 -13
- package/lib/oauth/mail-ru.js +23 -10
- package/lib/oauth/outlook.js +26 -16
- package/lib/oauth/pubsub/google.js +5 -0
- package/lib/routes-ui.js +235 -1
- package/lib/schemas.js +260 -80
- package/lib/stream-encrypt.js +263 -0
- package/lib/tools.js +30 -4
- package/lib/ui-routes/account-routes.js +23 -0
- package/lib/ui-routes/admin-config-routes.js +11 -4
- package/lib/ui-routes/admin-entities-routes.js +18 -0
- package/lib/webhooks.js +16 -20
- package/package.json +16 -16
- package/sbom.json +1 -1
- package/server.js +41 -5
- package/static/js/ace/ace.js +1 -1
- package/static/js/ace/ext-language_tools.js +1 -1
- package/static/licenses.html +52 -62
- package/translations/de.mo +0 -0
- package/translations/de.po +63 -36
- package/translations/en.mo +0 -0
- package/translations/en.po +64 -37
- package/translations/et.mo +0 -0
- package/translations/et.po +63 -36
- package/translations/fr.mo +0 -0
- package/translations/fr.po +63 -36
- package/translations/ja.mo +0 -0
- package/translations/ja.po +63 -36
- package/translations/messages.pot +80 -47
- package/translations/nl.mo +0 -0
- package/translations/nl.po +63 -36
- package/translations/pl.mo +0 -0
- package/translations/pl.po +63 -36
- package/views/accounts/account.hbs +375 -2
- package/views/config/service.hbs +35 -0
- package/workers/api.js +123 -44
- package/workers/documents.js +1 -0
- package/workers/export.js +926 -0
- package/workers/imap.js +29 -0
- package/workers/submit.js +25 -5
- package/workers/webhooks.js +11 -2
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.5</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>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
</tr>
|
|
67
67
|
<tr>
|
|
68
68
|
<td><a href="https://npmjs.com/package/@asamuzakjp/dom-selector">@asamuzakjp/dom-selector</a></td>
|
|
69
|
-
<td>6.7.
|
|
69
|
+
<td>6.7.7</td>
|
|
70
70
|
<td>MIT</td>
|
|
71
71
|
<td>asamuzaK</td>
|
|
72
72
|
<td></td>
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
</tr>
|
|
87
87
|
<tr>
|
|
88
88
|
<td><a href="https://npmjs.com/package/@bugsnag/browser">@bugsnag/browser</a></td>
|
|
89
|
-
<td>8.
|
|
89
|
+
<td>8.8.1</td>
|
|
90
90
|
<td>MIT</td>
|
|
91
91
|
<td>Bugsnag</td>
|
|
92
92
|
<td></td>
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
</tr>
|
|
97
97
|
<tr>
|
|
98
98
|
<td><a href="https://npmjs.com/package/@bugsnag/core">@bugsnag/core</a></td>
|
|
99
|
-
<td>8.
|
|
99
|
+
<td>8.8.0</td>
|
|
100
100
|
<td>MIT</td>
|
|
101
101
|
<td>Bugsnag</td>
|
|
102
102
|
<td></td>
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
</tr>
|
|
117
117
|
<tr>
|
|
118
118
|
<td><a href="https://npmjs.com/package/@bugsnag/js">@bugsnag/js</a></td>
|
|
119
|
-
<td>8.
|
|
119
|
+
<td>8.8.1</td>
|
|
120
120
|
<td>MIT</td>
|
|
121
121
|
<td>Bugsnag</td>
|
|
122
122
|
<td></td>
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
</tr>
|
|
127
127
|
<tr>
|
|
128
128
|
<td><a href="https://npmjs.com/package/@bugsnag/node">@bugsnag/node</a></td>
|
|
129
|
-
<td>8.
|
|
129
|
+
<td>8.8.0</td>
|
|
130
130
|
<td>MIT</td>
|
|
131
131
|
<td>Bugsnag</td>
|
|
132
132
|
<td></td>
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
</tr>
|
|
147
147
|
<tr>
|
|
148
148
|
<td><a href="https://npmjs.com/package/@bull-board/api">@bull-board/api</a></td>
|
|
149
|
-
<td>6.16.
|
|
149
|
+
<td>6.16.4</td>
|
|
150
150
|
<td>MIT</td>
|
|
151
151
|
<td>felixmosh</td>
|
|
152
152
|
<td></td>
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
</tr>
|
|
157
157
|
<tr>
|
|
158
158
|
<td><a href="https://npmjs.com/package/@bull-board/hapi">@bull-board/hapi</a></td>
|
|
159
|
-
<td>6.16.
|
|
159
|
+
<td>6.16.4</td>
|
|
160
160
|
<td>MIT</td>
|
|
161
161
|
<td>felixmosh</td>
|
|
162
162
|
<td></td>
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
</tr>
|
|
167
167
|
<tr>
|
|
168
168
|
<td><a href="https://npmjs.com/package/@bull-board/ui">@bull-board/ui</a></td>
|
|
169
|
-
<td>6.16.
|
|
169
|
+
<td>6.16.4</td>
|
|
170
170
|
<td>MIT</td>
|
|
171
171
|
<td>felixmosh</td>
|
|
172
172
|
<td></td>
|
|
@@ -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.26</td>
|
|
220
220
|
<td>MIT-0</td>
|
|
221
221
|
<td></td>
|
|
222
222
|
<td></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.5.0</td>
|
|
850
850
|
<td>Apache-2.0</td>
|
|
851
851
|
<td>OpenTelemetry Authors</td>
|
|
852
852
|
<td></td>
|
|
@@ -856,7 +856,7 @@
|
|
|
856
856
|
</tr>
|
|
857
857
|
<tr>
|
|
858
858
|
<td><a href="https://npmjs.com/package/@opentelemetry/semantic-conventions">@opentelemetry/semantic-conventions</a></td>
|
|
859
|
-
<td>1.
|
|
859
|
+
<td>1.39.0</td>
|
|
860
860
|
<td>Apache-2.0</td>
|
|
861
861
|
<td>OpenTelemetry Authors</td>
|
|
862
862
|
<td></td>
|
|
@@ -936,7 +936,7 @@
|
|
|
936
936
|
</tr>
|
|
937
937
|
<tr>
|
|
938
938
|
<td><a href="https://npmjs.com/package/@postalsys/email-ai-tools">@postalsys/email-ai-tools</a></td>
|
|
939
|
-
<td>1.11.
|
|
939
|
+
<td>1.11.3</td>
|
|
940
940
|
<td>MIT</td>
|
|
941
941
|
<td>Postal Systems OÜ</td>
|
|
942
942
|
<td></td>
|
|
@@ -1216,7 +1216,7 @@
|
|
|
1216
1216
|
</tr>
|
|
1217
1217
|
<tr>
|
|
1218
1218
|
<td><a href="https://npmjs.com/package/ace-builds">ace-builds</a></td>
|
|
1219
|
-
<td>1.43.
|
|
1219
|
+
<td>1.43.6</td>
|
|
1220
1220
|
<td>BSD-3-Clause</td>
|
|
1221
1221
|
<td></td>
|
|
1222
1222
|
<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.
|
|
1589
|
+
<td>5.67.2</td>
|
|
1590
1590
|
<td>MIT</td>
|
|
1591
1591
|
<td>Taskforce.sh Inc.</td>
|
|
1592
1592
|
<td></td>
|
|
@@ -2006,7 +2006,7 @@
|
|
|
2006
2006
|
</tr>
|
|
2007
2007
|
<tr>
|
|
2008
2008
|
<td><a href="https://npmjs.com/package/data-urls">data-urls</a></td>
|
|
2009
|
-
<td>6.0.
|
|
2009
|
+
<td>6.0.1</td>
|
|
2010
2010
|
<td>MIT</td>
|
|
2011
2011
|
<td>Domenic Denicola</td>
|
|
2012
2012
|
<td>d@domenic.me</td>
|
|
@@ -2335,7 +2335,7 @@
|
|
|
2335
2335
|
</tr>
|
|
2336
2336
|
<tr>
|
|
2337
2337
|
<td><a href="https://npmjs.com/package/entities">entities</a></td>
|
|
2338
|
-
<td>7.0.
|
|
2338
|
+
<td>7.0.1</td>
|
|
2339
2339
|
<td>BSD-2-Clause</td>
|
|
2340
2340
|
<td>Felix Boehm</td>
|
|
2341
2341
|
<td>me@feedic.com</td>
|
|
@@ -3435,26 +3435,6 @@
|
|
|
3435
3435
|
</tr>
|
|
3436
3436
|
<tr>
|
|
3437
3437
|
<td><a href="https://npmjs.com/package/iconv-lite">iconv-lite</a></td>
|
|
3438
|
-
<td>0.7.0</td>
|
|
3439
|
-
<td>MIT</td>
|
|
3440
|
-
<td>Alexander Shtuchkin</td>
|
|
3441
|
-
<td>ashtuchkin@gmail.com</td>
|
|
3442
|
-
<td>
|
|
3443
|
-
<a href="https://github.com/pillarjs/iconv-lite">github.com/pillarjs/iconv-lite</a>
|
|
3444
|
-
</td
|
|
3445
|
-
</tr>
|
|
3446
|
-
<tr>
|
|
3447
|
-
<td><a href="https://npmjs.com/package/iconv-lite">iconv-lite</a></td>
|
|
3448
|
-
<td>0.7.1</td>
|
|
3449
|
-
<td>MIT</td>
|
|
3450
|
-
<td>Alexander Shtuchkin</td>
|
|
3451
|
-
<td>ashtuchkin@gmail.com</td>
|
|
3452
|
-
<td>
|
|
3453
|
-
<a href="https://github.com/pillarjs/iconv-lite">github.com/pillarjs/iconv-lite</a>
|
|
3454
|
-
</td
|
|
3455
|
-
</tr>
|
|
3456
|
-
<tr>
|
|
3457
|
-
<td><a href="https://npmjs.com/package/iconv-lite">iconv-lite</a></td>
|
|
3458
3438
|
<td>0.7.2</td>
|
|
3459
3439
|
<td>MIT</td>
|
|
3460
3440
|
<td>Alexander Shtuchkin</td>
|
|
@@ -3485,7 +3465,7 @@
|
|
|
3485
3465
|
</tr>
|
|
3486
3466
|
<tr>
|
|
3487
3467
|
<td><a href="https://npmjs.com/package/imapflow">imapflow</a></td>
|
|
3488
|
-
<td>1.2.
|
|
3468
|
+
<td>1.2.8</td>
|
|
3489
3469
|
<td>MIT</td>
|
|
3490
3470
|
<td>Postal Systems OÜ</td>
|
|
3491
3471
|
<td></td>
|
|
@@ -3575,7 +3555,7 @@
|
|
|
3575
3555
|
</tr>
|
|
3576
3556
|
<tr>
|
|
3577
3557
|
<td><a href="https://npmjs.com/package/ioredis">ioredis</a></td>
|
|
3578
|
-
<td>5.9.
|
|
3558
|
+
<td>5.9.2</td>
|
|
3579
3559
|
<td>MIT</td>
|
|
3580
3560
|
<td>Zihua Li</td>
|
|
3581
3561
|
<td>i@zihua.li</td>
|
|
@@ -3835,7 +3815,7 @@
|
|
|
3835
3815
|
</tr>
|
|
3836
3816
|
<tr>
|
|
3837
3817
|
<td><a href="https://npmjs.com/package/jquery">jquery</a></td>
|
|
3838
|
-
<td>
|
|
3818
|
+
<td>4.0.0</td>
|
|
3839
3819
|
<td>MIT</td>
|
|
3840
3820
|
<td>OpenJS Foundation and other contributors</td>
|
|
3841
3821
|
<td></td>
|
|
@@ -4105,7 +4085,7 @@
|
|
|
4105
4085
|
</tr>
|
|
4106
4086
|
<tr>
|
|
4107
4087
|
<td><a href="https://npmjs.com/package/lodash">lodash</a></td>
|
|
4108
|
-
<td>4.17.
|
|
4088
|
+
<td>4.17.23</td>
|
|
4109
4089
|
<td>MIT</td>
|
|
4110
4090
|
<td>John-David Dalton</td>
|
|
4111
4091
|
<td>john.david.dalton@gmail.com</td>
|
|
@@ -4125,7 +4105,7 @@
|
|
|
4125
4105
|
</tr>
|
|
4126
4106
|
<tr>
|
|
4127
4107
|
<td><a href="https://npmjs.com/package/lru-cache">lru-cache</a></td>
|
|
4128
|
-
<td>11.2.
|
|
4108
|
+
<td>11.2.5</td>
|
|
4129
4109
|
<td>BlueOak-1.0.0</td>
|
|
4130
4110
|
<td>Isaac Z. Schlueter</td>
|
|
4131
4111
|
<td>i@izs.me</td>
|
|
@@ -4165,7 +4145,7 @@
|
|
|
4165
4145
|
</tr>
|
|
4166
4146
|
<tr>
|
|
4167
4147
|
<td><a href="https://npmjs.com/package/mailparser">mailparser</a></td>
|
|
4168
|
-
<td>3.9.
|
|
4148
|
+
<td>3.9.3</td>
|
|
4169
4149
|
<td>MIT</td>
|
|
4170
4150
|
<td>Andris Reinman</td>
|
|
4171
4151
|
<td></td>
|
|
@@ -4515,7 +4495,7 @@
|
|
|
4515
4495
|
</tr>
|
|
4516
4496
|
<tr>
|
|
4517
4497
|
<td><a href="https://npmjs.com/package/nodemailer">nodemailer</a></td>
|
|
4518
|
-
<td>7.0.
|
|
4498
|
+
<td>7.0.13</td>
|
|
4519
4499
|
<td>MIT-0</td>
|
|
4520
4500
|
<td>Andris Reinman</td>
|
|
4521
4501
|
<td></td>
|
|
@@ -4525,7 +4505,7 @@
|
|
|
4525
4505
|
</tr>
|
|
4526
4506
|
<tr>
|
|
4527
4507
|
<td><a href="https://npmjs.com/package/nodemailer">nodemailer</a></td>
|
|
4528
|
-
<td>
|
|
4508
|
+
<td>8.0.0</td>
|
|
4529
4509
|
<td>MIT-0</td>
|
|
4530
4510
|
<td>Andris Reinman</td>
|
|
4531
4511
|
<td></td>
|
|
@@ -4995,17 +4975,7 @@
|
|
|
4995
4975
|
</tr>
|
|
4996
4976
|
<tr>
|
|
4997
4977
|
<td><a href="https://npmjs.com/package/pino">pino</a></td>
|
|
4998
|
-
<td>10.
|
|
4999
|
-
<td>MIT</td>
|
|
5000
|
-
<td>Matteo Collina</td>
|
|
5001
|
-
<td>hello@matteocollina.com</td>
|
|
5002
|
-
<td>
|
|
5003
|
-
<a href="https://github.com/pinojs/pino">github.com/pinojs/pino</a>
|
|
5004
|
-
</td
|
|
5005
|
-
</tr>
|
|
5006
|
-
<tr>
|
|
5007
|
-
<td><a href="https://npmjs.com/package/pino">pino</a></td>
|
|
5008
|
-
<td>10.2.0</td>
|
|
4978
|
+
<td>10.3.0</td>
|
|
5009
4979
|
<td>MIT</td>
|
|
5010
4980
|
<td>Matteo Collina</td>
|
|
5011
4981
|
<td>hello@matteocollina.com</td>
|
|
@@ -5065,7 +5035,7 @@
|
|
|
5065
5035
|
</tr>
|
|
5066
5036
|
<tr>
|
|
5067
5037
|
<td><a href="https://npmjs.com/package/prettier">prettier</a></td>
|
|
5068
|
-
<td>3.8.
|
|
5038
|
+
<td>3.8.1</td>
|
|
5069
5039
|
<td>MIT</td>
|
|
5070
5040
|
<td>James Long</td>
|
|
5071
5041
|
<td></td>
|
|
@@ -5125,7 +5095,7 @@
|
|
|
5125
5095
|
</tr>
|
|
5126
5096
|
<tr>
|
|
5127
5097
|
<td><a href="https://npmjs.com/package/pubface">pubface</a></td>
|
|
5128
|
-
<td>1.0.
|
|
5098
|
+
<td>1.0.18</td>
|
|
5129
5099
|
<td>MIT-0</td>
|
|
5130
5100
|
<td>Postal Systems OÜ</td>
|
|
5131
5101
|
<td></td>
|
|
@@ -5645,7 +5615,7 @@
|
|
|
5645
5615
|
</tr>
|
|
5646
5616
|
<tr>
|
|
5647
5617
|
<td><a href="https://npmjs.com/package/smtp-server">smtp-server</a></td>
|
|
5648
|
-
<td>3.18.
|
|
5618
|
+
<td>3.18.1</td>
|
|
5649
5619
|
<td>MIT-0</td>
|
|
5650
5620
|
<td>Andris Reinman</td>
|
|
5651
5621
|
<td></td>
|
|
@@ -6045,7 +6015,7 @@
|
|
|
6045
6015
|
</tr>
|
|
6046
6016
|
<tr>
|
|
6047
6017
|
<td><a href="https://npmjs.com/package/tldts-core">tldts-core</a></td>
|
|
6048
|
-
<td>7.0.
|
|
6018
|
+
<td>7.0.22</td>
|
|
6049
6019
|
<td>MIT</td>
|
|
6050
6020
|
<td>Rémi Berson</td>
|
|
6051
6021
|
<td></td>
|
|
@@ -6055,7 +6025,7 @@
|
|
|
6055
6025
|
</tr>
|
|
6056
6026
|
<tr>
|
|
6057
6027
|
<td><a href="https://npmjs.com/package/tldts">tldts</a></td>
|
|
6058
|
-
<td>7.0.
|
|
6028
|
+
<td>7.0.22</td>
|
|
6059
6029
|
<td>MIT</td>
|
|
6060
6030
|
<td>Rémi Berson</td>
|
|
6061
6031
|
<td></td>
|
|
@@ -6225,7 +6195,17 @@
|
|
|
6225
6195
|
</tr>
|
|
6226
6196
|
<tr>
|
|
6227
6197
|
<td><a href="https://npmjs.com/package/undici">undici</a></td>
|
|
6228
|
-
<td>7.
|
|
6198
|
+
<td>7.19.2</td>
|
|
6199
|
+
<td>MIT</td>
|
|
6200
|
+
<td></td>
|
|
6201
|
+
<td></td>
|
|
6202
|
+
<td>
|
|
6203
|
+
<a href="https://github.com/nodejs/undici">github.com/nodejs/undici</a>
|
|
6204
|
+
</td
|
|
6205
|
+
</tr>
|
|
6206
|
+
<tr>
|
|
6207
|
+
<td><a href="https://npmjs.com/package/undici">undici</a></td>
|
|
6208
|
+
<td>7.20.0</td>
|
|
6229
6209
|
<td>MIT</td>
|
|
6230
6210
|
<td></td>
|
|
6231
6211
|
<td></td>
|
|
@@ -6374,6 +6354,16 @@
|
|
|
6374
6354
|
</td
|
|
6375
6355
|
</tr>
|
|
6376
6356
|
<tr>
|
|
6357
|
+
<td><a href="https://npmjs.com/package/whatwg-mimetype">whatwg-mimetype</a></td>
|
|
6358
|
+
<td>5.0.0</td>
|
|
6359
|
+
<td>MIT</td>
|
|
6360
|
+
<td>Domenic Denicola</td>
|
|
6361
|
+
<td>d@domenic.me</td>
|
|
6362
|
+
<td>
|
|
6363
|
+
<a href="https://github.com/jsdom/whatwg-mimetype">github.com/jsdom/whatwg-mimetype</a>
|
|
6364
|
+
</td
|
|
6365
|
+
</tr>
|
|
6366
|
+
<tr>
|
|
6377
6367
|
<td><a href="https://npmjs.com/package/whatwg-url">whatwg-url</a></td>
|
|
6378
6368
|
<td>15.1.0</td>
|
|
6379
6369
|
<td>MIT</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: 2026-
|
|
4
|
+
"POT-Creation-Date: 2026-02-05 09:12+0000\n"
|
|
5
5
|
"PO-Revision-Date: \n"
|
|
6
6
|
"Last-Translator: \n"
|
|
7
7
|
"Language-Team: \n"
|
|
@@ -69,14 +69,6 @@ msgstr "E-Mail-Adresse"
|
|
|
69
69
|
msgid "Enter your email address"
|
|
70
70
|
msgstr "Geben Sie Ihre E-Mail-Adresse ein"
|
|
71
71
|
|
|
72
|
-
#: views/accounts/register/index.hbs:2
|
|
73
|
-
msgid "Choose your email account provider"
|
|
74
|
-
msgstr "Wählen Sie Ihren E-Mail-Kontoanbieter"
|
|
75
|
-
|
|
76
|
-
#: views/accounts/register/index.hbs:15
|
|
77
|
-
msgid "Standard IMAP"
|
|
78
|
-
msgstr "Standard IMAP"
|
|
79
|
-
|
|
80
72
|
#: views/accounts/register/imap.hbs:11
|
|
81
73
|
msgid "Your name"
|
|
82
74
|
msgstr "Ihr Name"
|
|
@@ -99,6 +91,14 @@ msgstr "Passwort für Ihr Konto eingeben"
|
|
|
99
91
|
msgid "Continue"
|
|
100
92
|
msgstr "Weiter"
|
|
101
93
|
|
|
94
|
+
#: views/accounts/register/index.hbs:2
|
|
95
|
+
msgid "Choose your email account provider"
|
|
96
|
+
msgstr "Wählen Sie Ihren E-Mail-Kontoanbieter"
|
|
97
|
+
|
|
98
|
+
#: views/accounts/register/index.hbs:15
|
|
99
|
+
msgid "Standard IMAP"
|
|
100
|
+
msgstr "Standard IMAP"
|
|
101
|
+
|
|
102
102
|
#: views/accounts/register/imap-server.hbs:19
|
|
103
103
|
msgid "IMAP"
|
|
104
104
|
msgstr "IMAP"
|
|
@@ -222,15 +222,15 @@ msgstr "Verbindung zum SMTP-Server nicht moeglich"
|
|
|
222
222
|
msgid "Request failed."
|
|
223
223
|
msgstr "Anfrage fehlgeschlagen."
|
|
224
224
|
|
|
225
|
-
#: lib/routes-ui.js:
|
|
225
|
+
#: lib/routes-ui.js:520 lib/ui-routes/account-routes.js:60
|
|
226
226
|
msgid "Delegated"
|
|
227
227
|
msgstr "Delegiert"
|
|
228
228
|
|
|
229
|
-
#: lib/routes-ui.js:
|
|
229
|
+
#: lib/routes-ui.js:521 lib/ui-routes/account-routes.js:61
|
|
230
230
|
msgid "Using credentials from \"%s\""
|
|
231
231
|
msgstr "Verwendung von Anmeldeinformationen aus \"%s\""
|
|
232
232
|
|
|
233
|
-
#: lib/routes-ui.js:
|
|
233
|
+
#: lib/routes-ui.js:571 lib/ui-routes/account-routes.js:111
|
|
234
234
|
msgid ""
|
|
235
235
|
"Connection timed out. This usually occurs if you are behind a firewall or "
|
|
236
236
|
"connecting to the wrong port."
|
|
@@ -239,11 +239,11 @@ msgstr ""
|
|
|
239
239
|
"sich hinter einer Firewall befinden oder eine Verbindung zum falschen Port "
|
|
240
240
|
"herstellen."
|
|
241
241
|
|
|
242
|
-
#: lib/routes-ui.js:
|
|
242
|
+
#: lib/routes-ui.js:574 lib/ui-routes/account-routes.js:114
|
|
243
243
|
msgid "The server unexpectedly closed the connection."
|
|
244
244
|
msgstr "Der Server hat die Verbindung unerwartet geschlossen."
|
|
245
245
|
|
|
246
|
-
#: lib/routes-ui.js:
|
|
246
|
+
#: lib/routes-ui.js:577 lib/ui-routes/account-routes.js:117
|
|
247
247
|
msgid ""
|
|
248
248
|
"The server unexpectedly closed the connection. This usually happens when "
|
|
249
249
|
"attempting to connect to a TLS port without TLS enabled."
|
|
@@ -252,7 +252,7 @@ msgstr ""
|
|
|
252
252
|
"Regel, wenn versucht wird, eine Verbindung zu einem TLS-Port ohne "
|
|
253
253
|
"aktiviertes TLS herzustellen."
|
|
254
254
|
|
|
255
|
-
#: lib/routes-ui.js:
|
|
255
|
+
#: lib/routes-ui.js:582 lib/ui-routes/account-routes.js:122
|
|
256
256
|
msgid ""
|
|
257
257
|
"The server refused the connection. This typically occurs if the server is "
|
|
258
258
|
"not running, is overloaded, or you are connecting to the wrong host or port."
|
|
@@ -261,55 +261,82 @@ msgstr ""
|
|
|
261
261
|
"der Server nicht läuft, überlastet ist oder Sie sich mit dem falschen Host "
|
|
262
262
|
"oder Port verbinden."
|
|
263
263
|
|
|
264
|
-
#: lib/routes-ui.js:
|
|
264
|
+
#: lib/routes-ui.js:709
|
|
265
265
|
msgid "Invalid API key for OpenAI"
|
|
266
266
|
msgstr "Ungültiger API-Schlüssel für OpenAI"
|
|
267
267
|
|
|
268
|
-
#: lib/routes-ui.js:
|
|
269
|
-
#: lib/routes-ui.js:
|
|
270
|
-
#: workers/api.js:
|
|
271
|
-
#: lib/ui-routes/account-routes.js:
|
|
272
|
-
#: lib/ui-routes/account-routes.js:
|
|
273
|
-
#: lib/ui-routes/account-routes.js:
|
|
268
|
+
#: lib/routes-ui.js:4671 lib/routes-ui.js:4706 lib/routes-ui.js:4821
|
|
269
|
+
#: lib/routes-ui.js:4868 lib/routes-ui.js:5115 lib/routes-ui.js:5151
|
|
270
|
+
#: workers/api.js:2413 lib/ui-routes/account-routes.js:549
|
|
271
|
+
#: lib/ui-routes/account-routes.js:585 lib/ui-routes/account-routes.js:702
|
|
272
|
+
#: lib/ui-routes/account-routes.js:749 lib/ui-routes/account-routes.js:998
|
|
273
|
+
#: lib/ui-routes/account-routes.js:1034
|
|
274
274
|
msgid "Email Account Setup"
|
|
275
275
|
msgstr "E-Mail-Konto einrichten"
|
|
276
276
|
|
|
277
|
-
#: lib/routes-ui.js:
|
|
278
|
-
#: lib/ui-routes/account-routes.js:
|
|
277
|
+
#: lib/routes-ui.js:4731 lib/routes-ui.js:4764 lib/routes-ui.js:7701
|
|
278
|
+
#: lib/ui-routes/account-routes.js:610 lib/ui-routes/account-routes.js:644
|
|
279
279
|
msgid "Invalid request. Check your input and try again."
|
|
280
280
|
msgstr "Validierung der Anforderungsargumente fehlgeschlagen."
|
|
281
281
|
|
|
282
|
-
#: lib/routes-ui.js:
|
|
283
|
-
#: lib/ui-routes/account-routes.js:
|
|
282
|
+
#: lib/routes-ui.js:4924 lib/routes-ui.js:4935
|
|
283
|
+
#: lib/ui-routes/account-routes.js:806 lib/ui-routes/account-routes.js:817
|
|
284
284
|
#: lib/ui-routes/admin-entities-routes.js:2020
|
|
285
285
|
msgid "Server hostname was not found"
|
|
286
286
|
msgstr "Server-Hostname wurde nicht gefunden"
|
|
287
287
|
|
|
288
|
-
#: lib/routes-ui.js:
|
|
289
|
-
#: lib/ui-routes/account-routes.js:
|
|
288
|
+
#: lib/routes-ui.js:4927 lib/routes-ui.js:4938
|
|
289
|
+
#: lib/ui-routes/account-routes.js:809 lib/ui-routes/account-routes.js:820
|
|
290
290
|
#: lib/ui-routes/admin-entities-routes.js:2023
|
|
291
291
|
msgid "Invalid username or password"
|
|
292
292
|
msgstr "Ungültiger Benutzername oder Passwort"
|
|
293
293
|
|
|
294
|
-
#: lib/routes-ui.js:
|
|
295
|
-
#: lib/ui-routes/admin-entities-routes.js:
|
|
294
|
+
#: lib/routes-ui.js:4941 lib/ui-routes/account-routes.js:823
|
|
295
|
+
#: lib/ui-routes/admin-entities-routes.js:2026
|
|
296
|
+
msgid "Authentication credentials were not provided"
|
|
297
|
+
msgstr "Es wurden keine Authentifizierungsdaten angegeben"
|
|
298
|
+
|
|
299
|
+
#: lib/routes-ui.js:4944 lib/ui-routes/account-routes.js:826
|
|
300
|
+
#: lib/ui-routes/admin-entities-routes.js:2029
|
|
301
|
+
msgid "OAuth2 authentication failed"
|
|
302
|
+
msgstr "OAuth2-Authentifizierung fehlgeschlagen"
|
|
303
|
+
|
|
304
|
+
#: lib/routes-ui.js:4947 lib/routes-ui.js:4951
|
|
305
|
+
#: lib/ui-routes/account-routes.js:829 lib/ui-routes/account-routes.js:833
|
|
306
|
+
#: lib/ui-routes/admin-entities-routes.js:2032
|
|
307
|
+
#: lib/ui-routes/admin-entities-routes.js:2036
|
|
296
308
|
msgid "TLS protocol error"
|
|
297
309
|
msgstr "TLS-Protokollfehler"
|
|
298
310
|
|
|
299
|
-
#: lib/routes-ui.js:
|
|
311
|
+
#: lib/routes-ui.js:4955 lib/ui-routes/account-routes.js:837
|
|
312
|
+
#: lib/ui-routes/admin-entities-routes.js:2040
|
|
313
|
+
msgid "Connection timed out"
|
|
314
|
+
msgstr "Verbindung abgelaufen"
|
|
315
|
+
|
|
316
|
+
#: lib/routes-ui.js:4958 lib/ui-routes/account-routes.js:840
|
|
317
|
+
#: lib/ui-routes/admin-entities-routes.js:2043
|
|
318
|
+
msgid "Could not connect to server"
|
|
319
|
+
msgstr "Es konnte keine Verbindung zum Server hergestellt werden"
|
|
320
|
+
|
|
321
|
+
#: lib/routes-ui.js:4961 lib/ui-routes/account-routes.js:843
|
|
322
|
+
#: lib/ui-routes/admin-entities-routes.js:2046
|
|
323
|
+
msgid "Unexpected server response"
|
|
324
|
+
msgstr "Unerwartete Serverantwort"
|
|
325
|
+
|
|
326
|
+
#: lib/routes-ui.js:7664 lib/tools.js:778
|
|
300
327
|
msgid "Invalid input"
|
|
301
328
|
msgstr "Ungültige Eingabe"
|
|
302
329
|
|
|
303
|
-
#: lib/routes-ui.js:
|
|
304
|
-
#: lib/routes-ui.js:
|
|
330
|
+
#: lib/routes-ui.js:7674 lib/routes-ui.js:7792 lib/routes-ui.js:7809
|
|
331
|
+
#: lib/routes-ui.js:7845
|
|
305
332
|
msgid "Subscription Management"
|
|
306
333
|
msgstr "Mitgliederverwaltung"
|
|
307
334
|
|
|
308
|
-
#: workers/api.js:
|
|
335
|
+
#: workers/api.js:6904 workers/api.js:7020
|
|
309
336
|
msgid "Requested page not found"
|
|
310
337
|
msgstr "Gewünschte Seite nicht gefunden"
|
|
311
338
|
|
|
312
|
-
#: workers/api.js:
|
|
339
|
+
#: workers/api.js:6905
|
|
313
340
|
msgid "Something went wrong"
|
|
314
341
|
msgstr "Leider ist ein Fehler aufgetreten"
|
|
315
342
|
|
|
@@ -333,7 +360,7 @@ msgstr ""
|
|
|
333
360
|
"deaktiviert. Um fortzufahren, verwenden Sie bitte die Schaltfläche \"Sign in "
|
|
334
361
|
"with Microsoft\", um Ihr Konto sicher zu verbinden."
|
|
335
362
|
|
|
336
|
-
#: lib/ui-routes/account-routes.js:
|
|
363
|
+
#: lib/ui-routes/account-routes.js:742 lib/ui-routes/account-routes.js:1027
|
|
337
364
|
msgid "Couldn't set up account. Try again."
|
|
338
365
|
msgstr "Konto konnte nicht eingerichtet werden. Versuchen Sie es erneut."
|
|
339
366
|
|
package/translations/en.mo
CHANGED
|
Binary file
|