emailengine-app 2.61.1 → 2.61.3

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 +17 -0
  2. package/data/google-crawlers.json +1 -1
  3. package/lib/account/account-state.js +248 -0
  4. package/lib/account.js +45 -193
  5. package/lib/api-routes/account-routes.js +1023 -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 +10 -10
  35. package/sbom.json +1 -1
  36. package/static/js/app.js +5 -5
  37. package/static/licenses.html +79 -19
  38. package/translations/de.mo +0 -0
  39. package/translations/de.po +97 -86
  40. package/translations/en.mo +0 -0
  41. package/translations/en.po +80 -75
  42. package/translations/et.mo +0 -0
  43. package/translations/et.po +96 -86
  44. package/translations/fr.mo +0 -0
  45. package/translations/fr.po +97 -86
  46. package/translations/ja.mo +0 -0
  47. package/translations/ja.po +96 -86
  48. package/translations/messages.pot +105 -91
  49. package/translations/nl.mo +0 -0
  50. package/translations/nl.po +98 -86
  51. package/translations/pl.mo +0 -0
  52. package/translations/pl.po +96 -86
  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
@@ -1,7 +1,7 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Content-Type: text/plain; charset=ascii\n"
4
- "POT-Creation-Date: 2025-12-28 17:08+0000\n"
4
+ "POT-Creation-Date: 2026-01-14 09:54+0000\n"
5
5
 
6
6
  #: views/config/license.hbs:45
7
7
  msgid "%d day"
@@ -9,6 +9,10 @@ msgid_plural "%d days"
9
9
  msgstr[0] ""
10
10
  msgstr[1] ""
11
11
 
12
+ #: views/redirect.hbs:1
13
+ msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
14
+ msgstr ""
15
+
12
16
  #: views/unsubscribe.hbs:3
13
17
  #: views/unsubscribe.hbs:62
14
18
  #: views/unsubscribe.hbs:85
@@ -58,10 +62,6 @@ msgstr ""
58
62
  msgid "Enter your email address"
59
63
  msgstr ""
60
64
 
61
- #: views/redirect.hbs:1
62
- msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
63
- msgstr ""
64
-
65
65
  #: views/accounts/register/index.hbs:2
66
66
  msgid "Choose your email account provider"
67
67
  msgstr ""
@@ -70,21 +70,37 @@ msgstr ""
70
70
  msgid "Standard IMAP"
71
71
  msgstr ""
72
72
 
73
- #: views/accounts/register/imap-server.hbs:19
74
- msgid "IMAP"
73
+ #: views/accounts/register/imap.hbs:11
74
+ msgid "Your name"
75
75
  msgstr ""
76
76
 
77
- #: views/accounts/register/imap-server.hbs:22
78
- #: views/accounts/register/imap-server.hbs:114
79
- msgid "Username"
77
+ #: views/accounts/register/imap.hbs:17
78
+ msgid "Enter your full name"
80
79
  msgstr ""
81
80
 
81
+ #: views/accounts/register/imap.hbs:31
82
82
  #: views/accounts/register/imap-server.hbs:36
83
83
  #: views/accounts/register/imap-server.hbs:128
84
- #: views/accounts/register/imap.hbs:31
85
84
  msgid "Password"
86
85
  msgstr ""
87
86
 
87
+ #: views/accounts/register/imap.hbs:37
88
+ msgid "Enter your account password"
89
+ msgstr ""
90
+
91
+ #: views/accounts/register/imap.hbs:51
92
+ msgid "Continue"
93
+ msgstr ""
94
+
95
+ #: views/accounts/register/imap-server.hbs:19
96
+ msgid "IMAP"
97
+ msgstr ""
98
+
99
+ #: views/accounts/register/imap-server.hbs:22
100
+ #: views/accounts/register/imap-server.hbs:114
101
+ msgid "Username"
102
+ msgstr ""
103
+
88
104
  #: views/accounts/register/imap-server.hbs:45
89
105
  #: views/accounts/register/imap-server.hbs:136
90
106
  msgid "Important"
@@ -147,170 +163,163 @@ msgid ""
147
163
  msgstr ""
148
164
 
149
165
  #: views/accounts/register/imap-server.hbs:209
150
- msgid "Test settings"
166
+ msgid "Verify connection"
151
167
  msgstr ""
152
168
 
153
169
  #: views/accounts/register/imap-server.hbs:218
154
- #: views/accounts/register/imap.hbs:51
155
- msgid "Continue"
170
+ msgid "Save and continue"
156
171
  msgstr ""
157
172
 
158
173
  #: views/accounts/register/imap-server.hbs:226
159
- msgid "Continue without testing"
174
+ msgid "Skip verification"
160
175
  msgstr ""
161
176
 
162
177
  #: views/accounts/register/imap-server.hbs:241
163
- msgid "Test failed"
178
+ msgid "Connection test failed"
164
179
  msgstr ""
165
180
 
166
181
  #: views/accounts/register/imap-server.hbs:247
167
- msgid "Failed to validate provided email server settings."
182
+ msgid "We couldn't connect with these settings. Check the errors below."
168
183
  msgstr ""
169
184
 
170
185
  #: views/accounts/register/imap-server.hbs:318
171
- msgid "General Error"
186
+ msgid "Error"
172
187
  msgstr ""
173
188
 
174
189
  #: views/accounts/register/imap-server.hbs:320
175
- msgid "Validation Error"
190
+ msgid "Invalid settings"
176
191
  msgstr ""
177
192
 
178
193
  #: views/accounts/register/imap-server.hbs:326
179
- msgid "Failed to validate IMAP server settings"
194
+ msgid "Couldn't connect to IMAP server"
180
195
  msgstr ""
181
196
 
182
197
  #: views/accounts/register/imap-server.hbs:328
183
- msgid "IMAP Server responded with the following message:"
198
+ #: views/accounts/register/imap-server.hbs:337
199
+ msgid "Server response:"
184
200
  msgstr ""
185
201
 
186
202
  #: views/accounts/register/imap-server.hbs:335
187
- msgid "Failed to validate SMTP server settings"
188
- msgstr ""
189
-
190
- #: views/accounts/register/imap-server.hbs:337
191
- msgid "SMTP Server responded with the following message:"
203
+ msgid "Couldn't connect to SMTP server"
192
204
  msgstr ""
193
205
 
194
206
  #: views/accounts/register/imap-server.hbs:395
195
- msgid "HTTP error!"
196
- msgstr ""
197
-
198
- #: views/accounts/register/imap.hbs:11
199
- msgid "Your name"
200
- msgstr ""
201
-
202
- #: views/accounts/register/imap.hbs:17
203
- msgid "Enter your full name"
204
- msgstr ""
205
-
206
- #: views/accounts/register/imap.hbs:37
207
- msgid "Enter your account password"
207
+ msgid "Request failed."
208
208
  msgstr ""
209
209
 
210
- #: lib/routes-ui.js:532
210
+ #: lib/routes-ui.js:519
211
+ #: lib/ui-routes/account-routes.js:60
211
212
  msgid "Delegated"
212
213
  msgstr ""
213
214
 
214
- #: lib/routes-ui.js:533
215
+ #: lib/routes-ui.js:520
216
+ #: lib/ui-routes/account-routes.js:61
215
217
  msgid "Using credentials from \"%s\""
216
218
  msgstr ""
217
219
 
218
- #: lib/routes-ui.js:583
220
+ #: lib/routes-ui.js:570
221
+ #: lib/ui-routes/account-routes.js:111
219
222
  msgid ""
220
223
  "Connection timed out. This usually occurs if you are behind a firewall or "
221
224
  "connecting to the wrong port."
222
225
  msgstr ""
223
226
 
224
- #: lib/routes-ui.js:586
227
+ #: lib/routes-ui.js:573
228
+ #: lib/ui-routes/account-routes.js:114
225
229
  msgid "The server unexpectedly closed the connection."
226
230
  msgstr ""
227
231
 
228
- #: lib/routes-ui.js:589
232
+ #: lib/routes-ui.js:576
233
+ #: lib/ui-routes/account-routes.js:117
229
234
  msgid ""
230
235
  "The server unexpectedly closed the connection. This usually happens when "
231
236
  "attempting to connect to a TLS port without TLS enabled."
232
237
  msgstr ""
233
238
 
234
- #: lib/routes-ui.js:594
239
+ #: lib/routes-ui.js:581
240
+ #: lib/ui-routes/account-routes.js:122
235
241
  msgid ""
236
242
  "The server refused the connection. This typically occurs if the server is "
237
243
  "not running, is overloaded, or you are connecting to the wrong host or port."
238
244
  msgstr ""
239
245
 
240
- #: lib/routes-ui.js:712
246
+ #: lib/routes-ui.js:699
241
247
  msgid "Invalid API key for OpenAI"
242
248
  msgstr ""
243
249
 
244
- #: lib/routes-ui.js:5031
245
- #: lib/routes-ui.js:6986
246
- #: lib/routes-ui.js:6997
247
- msgid "Server hostname was not found"
248
- msgstr ""
249
-
250
- #: lib/routes-ui.js:5034
251
- #: lib/routes-ui.js:6989
252
- #: lib/routes-ui.js:7000
253
- msgid "Invalid username or password"
250
+ #: lib/routes-ui.js:4443
251
+ #: lib/routes-ui.js:4478
252
+ #: lib/routes-ui.js:4593
253
+ #: lib/routes-ui.js:4640
254
+ #: lib/routes-ui.js:4869
255
+ #: lib/routes-ui.js:4905
256
+ #: workers/api.js:2398
257
+ #: lib/ui-routes/account-routes.js:535
258
+ #: lib/ui-routes/account-routes.js:571
259
+ #: lib/ui-routes/account-routes.js:688
260
+ #: lib/ui-routes/account-routes.js:735
261
+ #: lib/ui-routes/account-routes.js:966
262
+ #: lib/ui-routes/account-routes.js:1002
263
+ msgid "Email Account Setup"
254
264
  msgstr ""
255
265
 
256
- #: lib/routes-ui.js:5038
257
- #: lib/routes-ui.js:7004
258
- msgid "TLS protocol error"
266
+ #: lib/routes-ui.js:4503
267
+ #: lib/routes-ui.js:4536
268
+ #: lib/routes-ui.js:7455
269
+ #: lib/ui-routes/account-routes.js:596
270
+ #: lib/ui-routes/account-routes.js:630
271
+ msgid "Invalid request. Check your input and try again."
259
272
  msgstr ""
260
273
 
261
- #: lib/routes-ui.js:6733
262
- #: lib/routes-ui.js:6768
263
- #: lib/routes-ui.js:6883
264
- #: lib/routes-ui.js:6930
265
- #: lib/routes-ui.js:7159
266
- #: lib/routes-ui.js:7195
267
- #: workers/api.js:2407
268
- msgid "Email Account Setup"
274
+ #: lib/routes-ui.js:4696
275
+ #: lib/routes-ui.js:4707
276
+ #: lib/ui-routes/account-routes.js:792
277
+ #: lib/ui-routes/account-routes.js:803
278
+ #: lib/ui-routes/admin-entities-routes.js:2020
279
+ msgid "Server hostname was not found"
269
280
  msgstr ""
270
281
 
271
- #: lib/routes-ui.js:6793
272
- #: lib/routes-ui.js:6826
273
- #: lib/routes-ui.js:9745
274
- msgid "Failed to validate request arguments"
282
+ #: lib/routes-ui.js:4699
283
+ #: lib/routes-ui.js:4710
284
+ #: lib/ui-routes/account-routes.js:795
285
+ #: lib/ui-routes/account-routes.js:806
286
+ #: lib/ui-routes/admin-entities-routes.js:2023
287
+ msgid "Invalid username or password"
275
288
  msgstr ""
276
289
 
277
- #: lib/routes-ui.js:6923
278
- #: lib/routes-ui.js:7188
279
- msgid "Failed to process account"
290
+ #: lib/routes-ui.js:4714
291
+ #: lib/ui-routes/account-routes.js:810
292
+ #: lib/ui-routes/admin-entities-routes.js:2027
293
+ msgid "TLS protocol error"
280
294
  msgstr ""
281
295
 
282
- #: lib/routes-ui.js:9708
283
- #: lib/tools.js:794
296
+ #: lib/routes-ui.js:7418
297
+ #: lib/tools.js:778
284
298
  msgid "Invalid input"
285
299
  msgstr ""
286
300
 
287
- #: lib/routes-ui.js:9718
288
- #: lib/routes-ui.js:9836
289
- #: lib/routes-ui.js:9853
290
- #: lib/routes-ui.js:9889
301
+ #: lib/routes-ui.js:7428
302
+ #: lib/routes-ui.js:7546
303
+ #: lib/routes-ui.js:7563
304
+ #: lib/routes-ui.js:7599
291
305
  msgid "Subscription Management"
292
306
  msgstr ""
293
307
 
294
- #: lib/routes-ui.js:9847
295
- #: lib/routes-ui.js:9882
296
- msgid "Failed to process request"
297
- msgstr ""
298
-
299
- #: workers/api.js:9113
300
- #: workers/api.js:9229
308
+ #: workers/api.js:6825
309
+ #: workers/api.js:6941
301
310
  msgid "Requested page not found"
302
311
  msgstr ""
303
312
 
304
- #: workers/api.js:9114
313
+ #: workers/api.js:6826
305
314
  msgid "Something went wrong"
306
315
  msgstr ""
307
316
 
308
- #: lib/tools.js:1493
317
+ #: lib/tools.js:1477
309
318
  msgid "Signature validation failed"
310
319
  msgstr ""
311
320
 
312
- #: lib/tools.js:1502
313
- #: lib/tools.js:1507
321
+ #: lib/tools.js:1486
322
+ #: lib/tools.js:1491
314
323
  msgid "Invalid or expired account setup URL"
315
324
  msgstr ""
316
325
 
@@ -320,4 +329,9 @@ msgid ""
320
329
  "for Outlook.com, Hotmail.com, and Microsoft 365 email accounts. To "
321
330
  "continue, please use the \"Sign in with Microsoft\" button to securely "
322
331
  "connect your account."
332
+ msgstr ""
333
+
334
+ #: lib/ui-routes/account-routes.js:728
335
+ #: lib/ui-routes/account-routes.js:995
336
+ msgid "Couldn't set up account. Try again."
323
337
  msgstr ""
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: 2026-01-14 09:54+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] "dag"
19
19
  msgstr[1] "dagen"
20
20
 
21
+ #: views/redirect.hbs:1
22
+ msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
23
+ msgstr "Klik <a href=\"%s\">hier</a> om door te gaan&mldr;"
24
+
21
25
  #: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
22
26
  msgid "Unsubscribe"
23
27
  msgstr "Uitschrijven"
@@ -63,10 +67,6 @@ msgstr "E-mailadres"
63
67
  msgid "Enter your email address"
64
68
  msgstr "Vul je email in"
65
69
 
66
- #: views/redirect.hbs:1
67
- msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
68
- msgstr "Klik <a href=\"%s\">hier</a> om door te gaan&mldr;"
69
-
70
70
  #: views/accounts/register/index.hbs:2
71
71
  msgid "Choose your email account provider"
72
72
  msgstr "Kies je e-mailprovider"
@@ -75,6 +75,28 @@ msgstr "Kies je e-mailprovider"
75
75
  msgid "Standard IMAP"
76
76
  msgstr "Standaard IMAP"
77
77
 
78
+ #: views/accounts/register/imap.hbs:11
79
+ msgid "Your name"
80
+ msgstr "Jouw naam"
81
+
82
+ #: views/accounts/register/imap.hbs:17
83
+ msgid "Enter your full name"
84
+ msgstr "Vul je naam in"
85
+
86
+ #: views/accounts/register/imap.hbs:31
87
+ #: views/accounts/register/imap-server.hbs:36
88
+ #: views/accounts/register/imap-server.hbs:128
89
+ msgid "Password"
90
+ msgstr "Wachtwoord"
91
+
92
+ #: views/accounts/register/imap.hbs:37
93
+ msgid "Enter your account password"
94
+ msgstr "Vul je wachtwoord in"
95
+
96
+ #: views/accounts/register/imap.hbs:51
97
+ msgid "Continue"
98
+ msgstr "Doorgaan"
99
+
78
100
  #: views/accounts/register/imap-server.hbs:19
79
101
  msgid "IMAP"
80
102
  msgstr "IMAP"
@@ -84,12 +106,6 @@ msgstr "IMAP"
84
106
  msgid "Username"
85
107
  msgstr "Gebruikersnaam"
86
108
 
87
- #: views/accounts/register/imap-server.hbs:36
88
- #: views/accounts/register/imap-server.hbs:128
89
- #: views/accounts/register/imap.hbs:31
90
- msgid "Password"
91
- msgstr "Wachtwoord"
92
-
93
109
  #: views/accounts/register/imap-server.hbs:45
94
110
  #: views/accounts/register/imap-server.hbs:136
95
111
  msgid "Important"
@@ -156,75 +172,61 @@ msgstr ""
156
172
  "465. Voor andere poorten schakelt EmailEngine over op STARTTLS-versleuteling."
157
173
 
158
174
  #: views/accounts/register/imap-server.hbs:209
159
- msgid "Test settings"
160
- msgstr "Test instellingen"
175
+ msgid "Verify connection"
176
+ msgstr "Verbinding controleren"
161
177
 
162
178
  #: views/accounts/register/imap-server.hbs:218
163
- #: views/accounts/register/imap.hbs:51
164
- msgid "Continue"
165
- msgstr "Doorgaan"
179
+ msgid "Save and continue"
180
+ msgstr "Opslaan en doorgaan"
166
181
 
167
182
  #: views/accounts/register/imap-server.hbs:226
168
- msgid "Continue without testing"
169
- msgstr "Doorgaan zonder testen"
183
+ msgid "Skip verification"
184
+ msgstr "Verificatie overslaan"
170
185
 
171
186
  #: views/accounts/register/imap-server.hbs:241
172
- msgid "Test failed"
173
- msgstr "Test mislukt"
187
+ msgid "Connection test failed"
188
+ msgstr "Verbindingstest mislukt"
174
189
 
175
190
  #: views/accounts/register/imap-server.hbs:247
176
- msgid "Failed to validate provided email server settings."
177
- msgstr "Het valideren van de opgegeven e-mailserverinstellingen is mislukt."
191
+ msgid "We couldn't connect with these settings. Check the errors below."
192
+ msgstr ""
193
+ "We konden geen verbinding maken met deze instellingen. Controleer de fouten "
194
+ "hieronder."
178
195
 
179
196
  #: views/accounts/register/imap-server.hbs:318
180
- msgid "General Error"
181
- msgstr "Algemene fout"
197
+ msgid "Error"
198
+ msgstr "Fout"
182
199
 
183
200
  #: views/accounts/register/imap-server.hbs:320
184
- msgid "Validation Error"
185
- msgstr "Validatiefout"
201
+ msgid "Invalid settings"
202
+ msgstr "Ongeldige instellingen"
186
203
 
187
204
  #: views/accounts/register/imap-server.hbs:326
188
- msgid "Failed to validate IMAP server settings"
189
- msgstr "Het valideren van de IMAP-serverinstellingen is mislukt"
205
+ msgid "Couldn't connect to IMAP server"
206
+ msgstr "Kon geen verbinding maken met IMAP-server"
190
207
 
191
208
  #: views/accounts/register/imap-server.hbs:328
192
- msgid "IMAP Server responded with the following message:"
193
- msgstr "De IMAP-server antwoordde met de volgende boodschap:"
209
+ #: views/accounts/register/imap-server.hbs:337
210
+ msgid "Server response:"
211
+ msgstr "Server reactie:"
194
212
 
195
213
  #: views/accounts/register/imap-server.hbs:335
196
- msgid "Failed to validate SMTP server settings"
197
- msgstr "Het valideren van de SMTP-serverinstellingen is mislukt"
198
-
199
- #: views/accounts/register/imap-server.hbs:337
200
- msgid "SMTP Server responded with the following message:"
201
- msgstr "De SMTP-server antwoordde met de volgende boodschap:"
214
+ msgid "Couldn't connect to SMTP server"
215
+ msgstr "Kon geen verbinding maken met SMTP-server"
202
216
 
203
217
  #: views/accounts/register/imap-server.hbs:395
204
- msgid "HTTP error!"
205
- msgstr "HTTP fout!"
206
-
207
- #: views/accounts/register/imap.hbs:11
208
- msgid "Your name"
209
- msgstr "Jouw naam"
210
-
211
- #: views/accounts/register/imap.hbs:17
212
- msgid "Enter your full name"
213
- msgstr "Vul je naam in"
218
+ msgid "Request failed."
219
+ msgstr "Verzoek mislukt."
214
220
 
215
- #: views/accounts/register/imap.hbs:37
216
- msgid "Enter your account password"
217
- msgstr "Vul je wachtwoord in"
218
-
219
- #: lib/routes-ui.js:529
221
+ #: lib/routes-ui.js:519 lib/ui-routes/account-routes.js:60
220
222
  msgid "Delegated"
221
223
  msgstr "Gedelegeerd"
222
224
 
223
- #: lib/routes-ui.js:530
225
+ #: lib/routes-ui.js:520 lib/ui-routes/account-routes.js:61
224
226
  msgid "Using credentials from \"%s\""
225
227
  msgstr "Gebruikmakend van inloggegevens van \"%s\""
226
228
 
227
- #: lib/routes-ui.js:580
229
+ #: lib/routes-ui.js:570 lib/ui-routes/account-routes.js:111
228
230
  msgid ""
229
231
  "Connection timed out. This usually occurs if you are behind a firewall or "
230
232
  "connecting to the wrong port."
@@ -232,11 +234,11 @@ msgstr ""
232
234
  "De verbinding is verlopen. Dit gebeurt meestal als je achter een firewall "
233
235
  "zit of verbinding maakt met de verkeerde poort."
234
236
 
235
- #: lib/routes-ui.js:583
237
+ #: lib/routes-ui.js:573 lib/ui-routes/account-routes.js:114
236
238
  msgid "The server unexpectedly closed the connection."
237
239
  msgstr "De server sloot onverwacht de verbinding."
238
240
 
239
- #: lib/routes-ui.js:586
241
+ #: lib/routes-ui.js:576 lib/ui-routes/account-routes.js:117
240
242
  msgid ""
241
243
  "The server unexpectedly closed the connection. This usually happens when "
242
244
  "attempting to connect to a TLS port without TLS enabled."
@@ -244,7 +246,7 @@ msgstr ""
244
246
  "De server sloot onverwacht de verbinding. Dit gebeurt meestal wanneer je "
245
247
  "probeert verbinding te maken met een TLS-poort zonder TLS ingeschakeld."
246
248
 
247
- #: lib/routes-ui.js:591
249
+ #: lib/routes-ui.js:581 lib/ui-routes/account-routes.js:122
248
250
  msgid ""
249
251
  "The server refused the connection. This typically occurs if the server is "
250
252
  "not running, is overloaded, or you are connecting to the wrong host or port."
@@ -253,62 +255,63 @@ msgstr ""
253
255
  "draait, overbelast is, of als je verbinding maakt met de verkeerde host of "
254
256
  "poort."
255
257
 
256
- #: lib/routes-ui.js:709
258
+ #: lib/routes-ui.js:699
257
259
  msgid "Invalid API key for OpenAI"
258
260
  msgstr "Ongeldige API-sleutel voor OpenAI"
259
261
 
260
- #: lib/routes-ui.js:5006 lib/routes-ui.js:6958 lib/routes-ui.js:6969
262
+ #: lib/routes-ui.js:4443 lib/routes-ui.js:4478 lib/routes-ui.js:4593
263
+ #: lib/routes-ui.js:4640 lib/routes-ui.js:4869 lib/routes-ui.js:4905
264
+ #: workers/api.js:2398 lib/ui-routes/account-routes.js:535
265
+ #: lib/ui-routes/account-routes.js:571 lib/ui-routes/account-routes.js:688
266
+ #: lib/ui-routes/account-routes.js:735 lib/ui-routes/account-routes.js:966
267
+ #: lib/ui-routes/account-routes.js:1002
268
+ msgid "Email Account Setup"
269
+ msgstr "E-mailaccountinstelling"
270
+
271
+ #: lib/routes-ui.js:4503 lib/routes-ui.js:4536 lib/routes-ui.js:7455
272
+ #: lib/ui-routes/account-routes.js:596 lib/ui-routes/account-routes.js:630
273
+ msgid "Invalid request. Check your input and try again."
274
+ msgstr "Het valideren van de aanvraag-argumenten is mislukt."
275
+
276
+ #: lib/routes-ui.js:4696 lib/routes-ui.js:4707
277
+ #: lib/ui-routes/account-routes.js:792 lib/ui-routes/account-routes.js:803
278
+ #: lib/ui-routes/admin-entities-routes.js:2020
261
279
  msgid "Server hostname was not found"
262
280
  msgstr "De serverhostnaam kon niet worden gevonden."
263
281
 
264
- #: lib/routes-ui.js:5009 lib/routes-ui.js:6961 lib/routes-ui.js:6972
282
+ #: lib/routes-ui.js:4699 lib/routes-ui.js:4710
283
+ #: lib/ui-routes/account-routes.js:795 lib/ui-routes/account-routes.js:806
284
+ #: lib/ui-routes/admin-entities-routes.js:2023
265
285
  msgid "Invalid username or password"
266
286
  msgstr "Ongeldige gebruikersnaam of wachtwoord"
267
287
 
268
- #: lib/routes-ui.js:5013 lib/routes-ui.js:6976
288
+ #: lib/routes-ui.js:4714 lib/ui-routes/account-routes.js:810
289
+ #: lib/ui-routes/admin-entities-routes.js:2027
269
290
  msgid "TLS protocol error"
270
291
  msgstr "TLS-protocolfout"
271
292
 
272
- #: lib/routes-ui.js:6705 lib/routes-ui.js:6740 lib/routes-ui.js:6855
273
- #: lib/routes-ui.js:6902 lib/routes-ui.js:7131 lib/routes-ui.js:7167
274
- #: workers/api.js:2346
275
- msgid "Email Account Setup"
276
- msgstr "E-mailaccountinstelling"
277
-
278
- #: lib/routes-ui.js:6765 lib/routes-ui.js:6798 lib/routes-ui.js:9717
279
- msgid "Failed to validate request arguments"
280
- msgstr "Het valideren van de aanvraag-argumenten is mislukt"
281
-
282
- #: lib/routes-ui.js:6895 lib/routes-ui.js:7160
283
- msgid "Failed to process account"
284
- msgstr "Het verwerken van het account is mislukt"
285
-
286
- #: lib/routes-ui.js:9680 lib/tools.js:795
293
+ #: lib/routes-ui.js:7418 lib/tools.js:778
287
294
  msgid "Invalid input"
288
295
  msgstr "Ongeldige invoer"
289
296
 
290
- #: lib/routes-ui.js:9690 lib/routes-ui.js:9808 lib/routes-ui.js:9825
291
- #: lib/routes-ui.js:9861
297
+ #: lib/routes-ui.js:7428 lib/routes-ui.js:7546 lib/routes-ui.js:7563
298
+ #: lib/routes-ui.js:7599
292
299
  msgid "Subscription Management"
293
300
  msgstr "Abonnementenbeheer"
294
301
 
295
- #: lib/routes-ui.js:9819 lib/routes-ui.js:9854
296
- msgid "Failed to process request"
297
- msgstr "Verzoek kon niet worden verwerkt."
298
-
299
- #: workers/api.js:8996 workers/api.js:9112
302
+ #: workers/api.js:6825 workers/api.js:6941
300
303
  msgid "Requested page not found"
301
304
  msgstr "Opgevraagde pagina niet gevonden"
302
305
 
303
- #: workers/api.js:8997
306
+ #: workers/api.js:6826
304
307
  msgid "Something went wrong"
305
308
  msgstr "Er ging iets mis"
306
309
 
307
- #: lib/tools.js:1494
310
+ #: lib/tools.js:1477
308
311
  msgid "Signature validation failed"
309
312
  msgstr "Handtekeningvalidatie mislukt"
310
313
 
311
- #: lib/tools.js:1503 lib/tools.js:1508
314
+ #: lib/tools.js:1486 lib/tools.js:1491
312
315
  msgid "Invalid or expired account setup URL"
313
316
  msgstr "Ongeldige of verlopen accountinstellings-URL"
314
317
 
@@ -323,3 +326,12 @@ msgstr ""
323
326
  "applicatiewachtwoorden) uitgeschakeld voor Outlook.com, Hotmail.com en "
324
327
  "Microsoft 365 e-mailaccounts. Gebruik de knop \"Inloggen met Microsoft\" om "
325
328
  "je account veilig te verbinden."
329
+
330
+ #: lib/ui-routes/account-routes.js:728 lib/ui-routes/account-routes.js:995
331
+ msgid "Couldn't set up account. Try again."
332
+ msgstr "Kan geen account aanmaken. Probeer het opnieuw."
333
+
334
+ #, fuzzy
335
+ #~| msgid "Failed to process request"
336
+ #~ msgid "Couldn't process request. Try again."
337
+ #~ msgstr "Verzoek kon niet worden verwerkt."
Binary file