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
@@ -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-12 11:16+0000\n"
5
5
 
6
6
  #: views/config/license.hbs:45
7
7
  msgid "%d day"
@@ -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,141 @@ 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!"
207
+ msgid "Request failed."
196
208
  msgstr ""
197
209
 
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"
208
- msgstr ""
209
-
210
- #: lib/routes-ui.js:532
210
+ #: lib/routes-ui.js:519
211
211
  msgid "Delegated"
212
212
  msgstr ""
213
213
 
214
- #: lib/routes-ui.js:533
214
+ #: lib/routes-ui.js:520
215
215
  msgid "Using credentials from \"%s\""
216
216
  msgstr ""
217
217
 
218
- #: lib/routes-ui.js:583
218
+ #: lib/routes-ui.js:570
219
219
  msgid ""
220
220
  "Connection timed out. This usually occurs if you are behind a firewall or "
221
221
  "connecting to the wrong port."
222
222
  msgstr ""
223
223
 
224
- #: lib/routes-ui.js:586
224
+ #: lib/routes-ui.js:573
225
225
  msgid "The server unexpectedly closed the connection."
226
226
  msgstr ""
227
227
 
228
- #: lib/routes-ui.js:589
228
+ #: lib/routes-ui.js:576
229
229
  msgid ""
230
230
  "The server unexpectedly closed the connection. This usually happens when "
231
231
  "attempting to connect to a TLS port without TLS enabled."
232
232
  msgstr ""
233
233
 
234
- #: lib/routes-ui.js:594
234
+ #: lib/routes-ui.js:581
235
235
  msgid ""
236
236
  "The server refused the connection. This typically occurs if the server is "
237
237
  "not running, is overloaded, or you are connecting to the wrong host or port."
238
238
  msgstr ""
239
239
 
240
- #: lib/routes-ui.js:712
240
+ #: lib/routes-ui.js:699
241
241
  msgid "Invalid API key for OpenAI"
242
242
  msgstr ""
243
243
 
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"
244
+ #: lib/routes-ui.js:4443
245
+ #: lib/routes-ui.js:4478
246
+ #: lib/routes-ui.js:4593
247
+ #: lib/routes-ui.js:4640
248
+ #: lib/routes-ui.js:4869
249
+ #: lib/routes-ui.js:4905
250
+ #: workers/api.js:2398
251
+ msgid "Email Account Setup"
254
252
  msgstr ""
255
253
 
256
- #: lib/routes-ui.js:5038
257
- #: lib/routes-ui.js:7004
258
- msgid "TLS protocol error"
254
+ #: lib/routes-ui.js:4503
255
+ #: lib/routes-ui.js:4536
256
+ #: lib/routes-ui.js:7455
257
+ msgid "Invalid request. Check your input and try again."
259
258
  msgstr ""
260
259
 
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"
260
+ #: lib/routes-ui.js:4696
261
+ #: lib/routes-ui.js:4707
262
+ msgid "Server hostname was not found"
269
263
  msgstr ""
270
264
 
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"
265
+ #: lib/routes-ui.js:4699
266
+ #: lib/routes-ui.js:4710
267
+ msgid "Invalid username or password"
275
268
  msgstr ""
276
269
 
277
- #: lib/routes-ui.js:6923
278
- #: lib/routes-ui.js:7188
279
- msgid "Failed to process account"
270
+ #: lib/routes-ui.js:4714
271
+ msgid "TLS protocol error"
280
272
  msgstr ""
281
273
 
282
- #: lib/routes-ui.js:9708
283
- #: lib/tools.js:794
274
+ #: lib/routes-ui.js:7418
275
+ #: lib/tools.js:778
284
276
  msgid "Invalid input"
285
277
  msgstr ""
286
278
 
287
- #: lib/routes-ui.js:9718
288
- #: lib/routes-ui.js:9836
289
- #: lib/routes-ui.js:9853
290
- #: lib/routes-ui.js:9889
279
+ #: lib/routes-ui.js:7428
280
+ #: lib/routes-ui.js:7546
281
+ #: lib/routes-ui.js:7563
282
+ #: lib/routes-ui.js:7599
291
283
  msgid "Subscription Management"
292
284
  msgstr ""
293
285
 
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
286
+ #: workers/api.js:6825
287
+ #: workers/api.js:6941
301
288
  msgid "Requested page not found"
302
289
  msgstr ""
303
290
 
304
- #: workers/api.js:9114
291
+ #: workers/api.js:6826
305
292
  msgid "Something went wrong"
306
293
  msgstr ""
307
294
 
308
- #: lib/tools.js:1493
295
+ #: lib/tools.js:1477
309
296
  msgid "Signature validation failed"
310
297
  msgstr ""
311
298
 
312
- #: lib/tools.js:1502
313
- #: lib/tools.js:1507
299
+ #: lib/tools.js:1486
300
+ #: lib/tools.js:1491
314
301
  msgid "Invalid or expired account setup URL"
315
302
  msgstr ""
316
303
 
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] "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"
218
+ msgid "Request failed."
219
+ msgstr "Verzoek mislukt."
210
220
 
211
- #: views/accounts/register/imap.hbs:17
212
- msgid "Enter your full name"
213
- msgstr "Vul je naam in"
214
-
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:532
220
222
  msgid "Delegated"
221
223
  msgstr "Gedelegeerd"
222
224
 
223
- #: lib/routes-ui.js:530
225
+ #: lib/routes-ui.js:533
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:583
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:586
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:589
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:594
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,54 @@ 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:712
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:5031 lib/routes-ui.js:6986 lib/routes-ui.js:6997
261
263
  msgid "Server hostname was not found"
262
264
  msgstr "De serverhostnaam kon niet worden gevonden."
263
265
 
264
- #: lib/routes-ui.js:5009 lib/routes-ui.js:6961 lib/routes-ui.js:6972
266
+ #: lib/routes-ui.js:5034 lib/routes-ui.js:6989 lib/routes-ui.js:7000
265
267
  msgid "Invalid username or password"
266
268
  msgstr "Ongeldige gebruikersnaam of wachtwoord"
267
269
 
268
- #: lib/routes-ui.js:5013 lib/routes-ui.js:6976
270
+ #: lib/routes-ui.js:5038 lib/routes-ui.js:7004
269
271
  msgid "TLS protocol error"
270
272
  msgstr "TLS-protocolfout"
271
273
 
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
274
+ #: lib/routes-ui.js:6733 lib/routes-ui.js:6768 lib/routes-ui.js:6883
275
+ #: lib/routes-ui.js:6930 lib/routes-ui.js:7159 lib/routes-ui.js:7195
276
+ #: workers/api.js:2407
275
277
  msgid "Email Account Setup"
276
278
  msgstr "E-mailaccountinstelling"
277
279
 
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"
280
+ #: lib/routes-ui.js:6793 lib/routes-ui.js:6826 lib/routes-ui.js:9745
281
+ msgid "Invalid request. Check your input and try again."
282
+ msgstr "Het valideren van de aanvraag-argumenten is mislukt."
285
283
 
286
- #: lib/routes-ui.js:9680 lib/tools.js:795
284
+ #: lib/routes-ui.js:9708 lib/tools.js:794
287
285
  msgid "Invalid input"
288
286
  msgstr "Ongeldige invoer"
289
287
 
290
- #: lib/routes-ui.js:9690 lib/routes-ui.js:9808 lib/routes-ui.js:9825
291
- #: lib/routes-ui.js:9861
288
+ #: lib/routes-ui.js:9718 lib/routes-ui.js:9836 lib/routes-ui.js:9853
289
+ #: lib/routes-ui.js:9889
292
290
  msgid "Subscription Management"
293
291
  msgstr "Abonnementenbeheer"
294
292
 
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
293
+ #: workers/api.js:9113 workers/api.js:9229
300
294
  msgid "Requested page not found"
301
295
  msgstr "Opgevraagde pagina niet gevonden"
302
296
 
303
- #: workers/api.js:8997
297
+ #: workers/api.js:9114
304
298
  msgid "Something went wrong"
305
299
  msgstr "Er ging iets mis"
306
300
 
307
- #: lib/tools.js:1494
301
+ #: lib/tools.js:1493
308
302
  msgid "Signature validation failed"
309
303
  msgstr "Handtekeningvalidatie mislukt"
310
304
 
311
- #: lib/tools.js:1503 lib/tools.js:1508
305
+ #: lib/tools.js:1502 lib/tools.js:1507
312
306
  msgid "Invalid or expired account setup URL"
313
307
  msgstr "Ongeldige of verlopen accountinstellings-URL"
314
308
 
@@ -323,3 +317,13 @@ msgstr ""
323
317
  "applicatiewachtwoorden) uitgeschakeld voor Outlook.com, Hotmail.com en "
324
318
  "Microsoft 365 e-mailaccounts. Gebruik de knop \"Inloggen met Microsoft\" om "
325
319
  "je account veilig te verbinden."
320
+
321
+ #, fuzzy
322
+ #~| msgid "Failed to process account"
323
+ #~ msgid "Couldn't set up account. Try again."
324
+ #~ msgstr "Het verwerken van het account is mislukt"
325
+
326
+ #, fuzzy
327
+ #~| msgid "Failed to process request"
328
+ #~ msgid "Couldn't process request. Try again."
329
+ #~ msgstr "Verzoek kon niet worden verwerkt."
Binary file