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,8 +1,8 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2025-08-13 10:54+0000\n"
5
- "PO-Revision-Date: 2025-08-13 13:56+0300\n"
4
+ "POT-Creation-Date: 2025-12-29 11:35+0000\n"
5
+ "PO-Revision-Date: 2025-12-29 13:36+0200\n"
6
6
  "Last-Translator: \n"
7
7
  "Language-Team: \n"
8
8
  "Language: en\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
  "X-Poedit-Basepath: .\n"
15
15
 
16
16
  #: views/config/license.hbs:45
@@ -19,6 +19,10 @@ msgid_plural "%d days"
19
19
  msgstr[0] ""
20
20
  msgstr[1] ""
21
21
 
22
+ #: views/redirect.hbs:1
23
+ msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
24
+ msgstr ""
25
+
22
26
  #: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
23
27
  msgid "Unsubscribe"
24
28
  msgstr ""
@@ -63,10 +67,6 @@ msgstr ""
63
67
  msgid "Enter your email address"
64
68
  msgstr ""
65
69
 
66
- #: views/redirect.hbs:1
67
- msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
68
- msgstr ""
69
-
70
70
  #: views/accounts/register/index.hbs:2
71
71
  msgid "Choose your email account provider"
72
72
  msgstr ""
@@ -75,21 +75,37 @@ msgstr ""
75
75
  msgid "Standard IMAP"
76
76
  msgstr ""
77
77
 
78
- #: views/accounts/register/imap-server.hbs:19
79
- msgid "IMAP"
78
+ #: views/accounts/register/imap.hbs:11
79
+ msgid "Your name"
80
80
  msgstr ""
81
81
 
82
- #: views/accounts/register/imap-server.hbs:22
83
- #: views/accounts/register/imap-server.hbs:114
84
- msgid "Username"
82
+ #: views/accounts/register/imap.hbs:17
83
+ msgid "Enter your full name"
85
84
  msgstr ""
86
85
 
86
+ #: views/accounts/register/imap.hbs:31
87
87
  #: views/accounts/register/imap-server.hbs:36
88
88
  #: views/accounts/register/imap-server.hbs:128
89
- #: views/accounts/register/imap.hbs:31
90
89
  msgid "Password"
91
90
  msgstr ""
92
91
 
92
+ #: views/accounts/register/imap.hbs:37
93
+ msgid "Enter your account password"
94
+ msgstr ""
95
+
96
+ #: views/accounts/register/imap.hbs:51
97
+ msgid "Continue"
98
+ msgstr ""
99
+
100
+ #: views/accounts/register/imap-server.hbs:19
101
+ msgid "IMAP"
102
+ msgstr ""
103
+
104
+ #: views/accounts/register/imap-server.hbs:22
105
+ #: views/accounts/register/imap-server.hbs:114
106
+ msgid "Username"
107
+ msgstr ""
108
+
93
109
  #: views/accounts/register/imap-server.hbs:45
94
110
  #: views/accounts/register/imap-server.hbs:136
95
111
  msgid "Important"
@@ -152,152 +168,128 @@ msgid ""
152
168
  msgstr ""
153
169
 
154
170
  #: views/accounts/register/imap-server.hbs:209
155
- msgid "Test settings"
171
+ msgid "Verify connection"
156
172
  msgstr ""
157
173
 
158
174
  #: views/accounts/register/imap-server.hbs:218
159
- #: views/accounts/register/imap.hbs:51
160
- msgid "Continue"
175
+ msgid "Save and continue"
161
176
  msgstr ""
162
177
 
163
178
  #: views/accounts/register/imap-server.hbs:226
164
- msgid "Continue without testing"
179
+ msgid "Skip verification"
165
180
  msgstr ""
166
181
 
167
182
  #: views/accounts/register/imap-server.hbs:241
168
- msgid "Test failed"
183
+ msgid "Connection test failed"
169
184
  msgstr ""
170
185
 
171
186
  #: views/accounts/register/imap-server.hbs:247
172
- msgid "Failed to validate provided email server settings."
187
+ msgid "We couldn't connect with these settings. Check the errors below."
173
188
  msgstr ""
174
189
 
175
190
  #: views/accounts/register/imap-server.hbs:318
176
- msgid "General Error"
191
+ msgid "Error"
177
192
  msgstr ""
178
193
 
179
194
  #: views/accounts/register/imap-server.hbs:320
180
- msgid "Validation Error"
195
+ msgid "Invalid settings"
181
196
  msgstr ""
182
197
 
183
198
  #: views/accounts/register/imap-server.hbs:326
184
- msgid "Failed to validate IMAP server settings"
199
+ msgid "Couldn't connect to IMAP server"
185
200
  msgstr ""
186
201
 
187
202
  #: views/accounts/register/imap-server.hbs:328
188
- msgid "IMAP Server responded with the following message:"
203
+ #: views/accounts/register/imap-server.hbs:337
204
+ msgid "Server response:"
189
205
  msgstr ""
190
206
 
191
207
  #: views/accounts/register/imap-server.hbs:335
192
- msgid "Failed to validate SMTP server settings"
193
- msgstr ""
194
-
195
- #: views/accounts/register/imap-server.hbs:337
196
- msgid "SMTP Server responded with the following message:"
208
+ msgid "Couldn't connect to SMTP server"
197
209
  msgstr ""
198
210
 
199
211
  #: views/accounts/register/imap-server.hbs:395
200
- msgid "HTTP error!"
201
- msgstr ""
202
-
203
- #: views/accounts/register/imap.hbs:11
204
- msgid "Your name"
212
+ msgid "Request failed."
205
213
  msgstr ""
206
214
 
207
- #: views/accounts/register/imap.hbs:17
208
- msgid "Enter your full name"
209
- msgstr ""
210
-
211
- #: views/accounts/register/imap.hbs:37
212
- msgid "Enter your account password"
213
- msgstr ""
214
-
215
- #: lib/routes-ui.js:529
215
+ #: lib/routes-ui.js:532
216
216
  msgid "Delegated"
217
217
  msgstr ""
218
218
 
219
- #: lib/routes-ui.js:530
219
+ #: lib/routes-ui.js:533
220
220
  msgid "Using credentials from \"%s\""
221
221
  msgstr ""
222
222
 
223
- #: lib/routes-ui.js:580
223
+ #: lib/routes-ui.js:583
224
224
  msgid ""
225
225
  "Connection timed out. This usually occurs if you are behind a firewall or "
226
226
  "connecting to the wrong port."
227
227
  msgstr ""
228
228
 
229
- #: lib/routes-ui.js:583
229
+ #: lib/routes-ui.js:586
230
230
  msgid "The server unexpectedly closed the connection."
231
231
  msgstr ""
232
232
 
233
- #: lib/routes-ui.js:586
233
+ #: lib/routes-ui.js:589
234
234
  msgid ""
235
235
  "The server unexpectedly closed the connection. This usually happens when "
236
236
  "attempting to connect to a TLS port without TLS enabled."
237
237
  msgstr ""
238
238
 
239
- #: lib/routes-ui.js:591
239
+ #: lib/routes-ui.js:594
240
240
  msgid ""
241
241
  "The server refused the connection. This typically occurs if the server is "
242
242
  "not running, is overloaded, or you are connecting to the wrong host or port."
243
243
  msgstr ""
244
244
 
245
- #: lib/routes-ui.js:709
245
+ #: lib/routes-ui.js:712
246
246
  msgid "Invalid API key for OpenAI"
247
247
  msgstr ""
248
248
 
249
- #: lib/routes-ui.js:5006 lib/routes-ui.js:6958 lib/routes-ui.js:6969
249
+ #: lib/routes-ui.js:5031 lib/routes-ui.js:6986 lib/routes-ui.js:6997
250
250
  msgid "Server hostname was not found"
251
251
  msgstr ""
252
252
 
253
- #: lib/routes-ui.js:5009 lib/routes-ui.js:6961 lib/routes-ui.js:6972
253
+ #: lib/routes-ui.js:5034 lib/routes-ui.js:6989 lib/routes-ui.js:7000
254
254
  msgid "Invalid username or password"
255
255
  msgstr ""
256
256
 
257
- #: lib/routes-ui.js:5013 lib/routes-ui.js:6976
257
+ #: lib/routes-ui.js:5038 lib/routes-ui.js:7004
258
258
  msgid "TLS protocol error"
259
259
  msgstr ""
260
260
 
261
- #: lib/routes-ui.js:6705 lib/routes-ui.js:6740 lib/routes-ui.js:6855
262
- #: lib/routes-ui.js:6902 lib/routes-ui.js:7131 lib/routes-ui.js:7167
263
- #: workers/api.js:2346
261
+ #: lib/routes-ui.js:6733 lib/routes-ui.js:6768 lib/routes-ui.js:6883
262
+ #: lib/routes-ui.js:6930 lib/routes-ui.js:7159 lib/routes-ui.js:7195
263
+ #: workers/api.js:2407
264
264
  msgid "Email Account Setup"
265
265
  msgstr ""
266
266
 
267
- #: lib/routes-ui.js:6765 lib/routes-ui.js:6798 lib/routes-ui.js:9717
268
- msgid "Failed to validate request arguments"
267
+ #: lib/routes-ui.js:6793 lib/routes-ui.js:6826 lib/routes-ui.js:9745
268
+ msgid "Invalid request. Check your input and try again."
269
269
  msgstr ""
270
270
 
271
- #: lib/routes-ui.js:6895 lib/routes-ui.js:7160
272
- msgid "Failed to process account"
273
- msgstr ""
274
-
275
- #: lib/routes-ui.js:9680 lib/tools.js:795
271
+ #: lib/routes-ui.js:9708 lib/tools.js:794
276
272
  msgid "Invalid input"
277
273
  msgstr ""
278
274
 
279
- #: lib/routes-ui.js:9690 lib/routes-ui.js:9808 lib/routes-ui.js:9825
280
- #: lib/routes-ui.js:9861
275
+ #: lib/routes-ui.js:9718 lib/routes-ui.js:9836 lib/routes-ui.js:9853
276
+ #: lib/routes-ui.js:9889
281
277
  msgid "Subscription Management"
282
278
  msgstr ""
283
279
 
284
- #: lib/routes-ui.js:9819 lib/routes-ui.js:9854
285
- msgid "Failed to process request"
286
- msgstr ""
287
-
288
- #: workers/api.js:8996 workers/api.js:9112
280
+ #: workers/api.js:9113 workers/api.js:9229
289
281
  msgid "Requested page not found"
290
282
  msgstr ""
291
283
 
292
- #: workers/api.js:8997
284
+ #: workers/api.js:9114
293
285
  msgid "Something went wrong"
294
286
  msgstr ""
295
287
 
296
- #: lib/tools.js:1494
288
+ #: lib/tools.js:1493
297
289
  msgid "Signature validation failed"
298
290
  msgstr ""
299
291
 
300
- #: lib/tools.js:1503 lib/tools.js:1508
292
+ #: lib/tools.js:1502 lib/tools.js:1507
301
293
  msgid "Invalid or expired account setup URL"
302
294
  msgstr ""
303
295
 
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 päev"
19
19
  msgstr[1] "%d päeva"
20
20
 
21
+ #: views/redirect.hbs:1
22
+ msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
23
+ msgstr "Kliki <a href=\"%s\">siin</a>, et jätkata&mldr;"
24
+
21
25
  #: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
22
26
  msgid "Unsubscribe"
23
27
  msgstr "Loobu tellimusest"
@@ -65,10 +69,6 @@ msgstr "E-posti aadress"
65
69
  msgid "Enter your email address"
66
70
  msgstr "Sisestage oma e-posti aadress"
67
71
 
68
- #: views/redirect.hbs:1
69
- msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
70
- msgstr "Kliki <a href=\"%s\">siin</a>, et jätkata&mldr;"
71
-
72
72
  #: views/accounts/register/index.hbs:2
73
73
  msgid "Choose your email account provider"
74
74
  msgstr "Valige oma e-posti konto pakkuja"
@@ -77,6 +77,28 @@ msgstr "Valige oma e-posti konto pakkuja"
77
77
  msgid "Standard IMAP"
78
78
  msgstr "Standardne IMAP"
79
79
 
80
+ #: views/accounts/register/imap.hbs:11
81
+ msgid "Your name"
82
+ msgstr "Sinu nimi"
83
+
84
+ #: views/accounts/register/imap.hbs:17
85
+ msgid "Enter your full name"
86
+ msgstr "Sisestage oma täisnimi"
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 "Parool"
93
+
94
+ #: views/accounts/register/imap.hbs:37
95
+ msgid "Enter your account password"
96
+ msgstr "Sisestage oma konto parool"
97
+
98
+ #: views/accounts/register/imap.hbs:51
99
+ msgid "Continue"
100
+ msgstr "Jätka"
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 "Kasutajanimi"
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 "Parool"
94
-
95
111
  #: views/accounts/register/imap-server.hbs:45
96
112
  #: views/accounts/register/imap-server.hbs:136
97
113
  msgid "Important"
@@ -160,75 +176,59 @@ msgstr ""
160
176
  "krüpteerimist."
161
177
 
162
178
  #: views/accounts/register/imap-server.hbs:209
163
- msgid "Test settings"
164
- msgstr "Kontrolli seadeid"
179
+ msgid "Verify connection"
180
+ msgstr "Kontrolli ühendust"
165
181
 
166
182
  #: views/accounts/register/imap-server.hbs:218
167
- #: views/accounts/register/imap.hbs:51
168
- msgid "Continue"
169
- msgstr "Jätka"
183
+ msgid "Save and continue"
184
+ msgstr "Salvesta ja jätka"
170
185
 
171
186
  #: views/accounts/register/imap-server.hbs:226
172
- msgid "Continue without testing"
173
- msgstr "Jätka ilma seadistusi kontrollimata"
187
+ msgid "Skip verification"
188
+ msgstr "Jäta kontroll vahele"
174
189
 
175
190
  #: views/accounts/register/imap-server.hbs:241
176
- msgid "Test failed"
177
- msgstr "Test ebaõnnestus"
191
+ msgid "Connection test failed"
192
+ msgstr "Ühenduse kontroll ebaõnnestus"
178
193
 
179
194
  #: views/accounts/register/imap-server.hbs:247
180
- msgid "Failed to validate provided email server settings."
181
- msgstr "Esitatud e-posti serveri seadete valideerimine ebaõnnestus."
195
+ msgid "We couldn't connect with these settings. Check the errors below."
196
+ msgstr "Nende seadetega ei õnnestunud ühendust luua. Kontrolli vigu allpool."
182
197
 
183
198
  #: views/accounts/register/imap-server.hbs:318
184
- msgid "General Error"
185
- msgstr "Üldine viga"
199
+ msgid "Error"
200
+ msgstr "Viga"
186
201
 
187
202
  #: views/accounts/register/imap-server.hbs:320
188
- msgid "Validation Error"
189
- msgstr "Valideerimisviga"
203
+ msgid "Invalid settings"
204
+ msgstr "Vigased seaded"
190
205
 
191
206
  #: views/accounts/register/imap-server.hbs:326
192
- msgid "Failed to validate IMAP server settings"
193
- msgstr "IMAP serveri seadete valideerimine ebaõnnestus"
207
+ msgid "Couldn't connect to IMAP server"
208
+ msgstr "IMAP serveriga ei õnnestunud ühendust luua"
194
209
 
195
210
  #: views/accounts/register/imap-server.hbs:328
196
- msgid "IMAP Server responded with the following message:"
197
- msgstr "IMAP server vastas järgmise teatega:"
211
+ #: views/accounts/register/imap-server.hbs:337
212
+ msgid "Server response:"
213
+ msgstr "Serveri vastus:"
198
214
 
199
215
  #: views/accounts/register/imap-server.hbs:335
200
- msgid "Failed to validate SMTP server settings"
201
- msgstr "SMTP serveri seadete valideerimine ebaõnnestus"
202
-
203
- #: views/accounts/register/imap-server.hbs:337
204
- msgid "SMTP Server responded with the following message:"
205
- msgstr "SMTP server vastas järgmise teatega:"
216
+ msgid "Couldn't connect to SMTP server"
217
+ msgstr "SMTP serveriga ei õnnestunud ühendust luua"
206
218
 
207
219
  #: views/accounts/register/imap-server.hbs:395
208
- msgid "HTTP error!"
209
- msgstr "HTTP viga!"
210
-
211
- #: views/accounts/register/imap.hbs:11
212
- msgid "Your name"
213
- msgstr "Sinu nimi"
220
+ msgid "Request failed."
221
+ msgstr "Päring ebaõnnestus."
214
222
 
215
- #: views/accounts/register/imap.hbs:17
216
- msgid "Enter your full name"
217
- msgstr "Sisestage oma täisnimi"
218
-
219
- #: views/accounts/register/imap.hbs:37
220
- msgid "Enter your account password"
221
- msgstr "Sisestage oma konto parool"
222
-
223
- #: lib/routes-ui.js:529
223
+ #: lib/routes-ui.js:532
224
224
  msgid "Delegated"
225
225
  msgstr "Delegeeritud"
226
226
 
227
- #: lib/routes-ui.js:530
227
+ #: lib/routes-ui.js:533
228
228
  msgid "Using credentials from \"%s\""
229
229
  msgstr "Kasutades volitusi \"%s\""
230
230
 
231
- #: lib/routes-ui.js:580
231
+ #: lib/routes-ui.js:583
232
232
  msgid ""
233
233
  "Connection timed out. This usually occurs if you are behind a firewall or "
234
234
  "connecting to the wrong port."
@@ -236,11 +236,11 @@ msgstr ""
236
236
  "Ühendus on aegunud. See juhtub tavaliselt siis, kui olete tulemüüri taga või "
237
237
  "ühendute valesse porti."
238
238
 
239
- #: lib/routes-ui.js:583
239
+ #: lib/routes-ui.js:586
240
240
  msgid "The server unexpectedly closed the connection."
241
241
  msgstr "Server sulges ootamatult ühenduse."
242
242
 
243
- #: lib/routes-ui.js:586
243
+ #: lib/routes-ui.js:589
244
244
  msgid ""
245
245
  "The server unexpectedly closed the connection. This usually happens when "
246
246
  "attempting to connect to a TLS port without TLS enabled."
@@ -248,7 +248,7 @@ msgstr ""
248
248
  "Server sulges ootamatult ühenduse. See juhtub tavaliselt siis, kui "
249
249
  "üritatakse luua ühendust TLS-porti, ilma et TLS oleks lubatud."
250
250
 
251
- #: lib/routes-ui.js:591
251
+ #: lib/routes-ui.js:594
252
252
  msgid ""
253
253
  "The server refused the connection. This typically occurs if the server is "
254
254
  "not running, is overloaded, or you are connecting to the wrong host or port."
@@ -256,62 +256,54 @@ msgstr ""
256
256
  "Server keeldus ühendusest. See juhtub tavaliselt siis, kui server ei tööta, "
257
257
  "on ülekoormatud või ühendute vale hostiga või porti."
258
258
 
259
- #: lib/routes-ui.js:709
259
+ #: lib/routes-ui.js:712
260
260
  msgid "Invalid API key for OpenAI"
261
261
  msgstr "OpenAI jaoks vale API võti"
262
262
 
263
- #: lib/routes-ui.js:5006 lib/routes-ui.js:6958 lib/routes-ui.js:6969
263
+ #: lib/routes-ui.js:5031 lib/routes-ui.js:6986 lib/routes-ui.js:6997
264
264
  msgid "Server hostname was not found"
265
265
  msgstr "Serverit ei leitud"
266
266
 
267
- #: lib/routes-ui.js:5009 lib/routes-ui.js:6961 lib/routes-ui.js:6972
267
+ #: lib/routes-ui.js:5034 lib/routes-ui.js:6989 lib/routes-ui.js:7000
268
268
  msgid "Invalid username or password"
269
269
  msgstr "Vigane kasutajanimi või parool"
270
270
 
271
- #: lib/routes-ui.js:5013 lib/routes-ui.js:6976
271
+ #: lib/routes-ui.js:5038 lib/routes-ui.js:7004
272
272
  msgid "TLS protocol error"
273
273
  msgstr "TLS protokolli viga"
274
274
 
275
- #: lib/routes-ui.js:6705 lib/routes-ui.js:6740 lib/routes-ui.js:6855
276
- #: lib/routes-ui.js:6902 lib/routes-ui.js:7131 lib/routes-ui.js:7167
277
- #: workers/api.js:2346
275
+ #: lib/routes-ui.js:6733 lib/routes-ui.js:6768 lib/routes-ui.js:6883
276
+ #: lib/routes-ui.js:6930 lib/routes-ui.js:7159 lib/routes-ui.js:7195
277
+ #: workers/api.js:2407
278
278
  msgid "Email Account Setup"
279
279
  msgstr "E-posti konto seadistamine"
280
280
 
281
- #: lib/routes-ui.js:6765 lib/routes-ui.js:6798 lib/routes-ui.js:9717
282
- msgid "Failed to validate request arguments"
283
- msgstr "Päringu argumentide kontroll ebaõnnestus"
284
-
285
- #: lib/routes-ui.js:6895 lib/routes-ui.js:7160
286
- msgid "Failed to process account"
287
- msgstr "Konto töötlemine ebaõnnestus"
281
+ #: lib/routes-ui.js:6793 lib/routes-ui.js:6826 lib/routes-ui.js:9745
282
+ msgid "Invalid request. Check your input and try again."
283
+ msgstr "Päringu argumentide kontroll ebaõnnestus."
288
284
 
289
- #: lib/routes-ui.js:9680 lib/tools.js:795
285
+ #: lib/routes-ui.js:9708 lib/tools.js:794
290
286
  msgid "Invalid input"
291
287
  msgstr "Vale sisestus"
292
288
 
293
- #: lib/routes-ui.js:9690 lib/routes-ui.js:9808 lib/routes-ui.js:9825
294
- #: lib/routes-ui.js:9861
289
+ #: lib/routes-ui.js:9718 lib/routes-ui.js:9836 lib/routes-ui.js:9853
290
+ #: lib/routes-ui.js:9889
295
291
  msgid "Subscription Management"
296
292
  msgstr "Tellimuse haldamine"
297
293
 
298
- #: lib/routes-ui.js:9819 lib/routes-ui.js:9854
299
- msgid "Failed to process request"
300
- msgstr "Päringu töötlemine ebaõnnestus"
301
-
302
- #: workers/api.js:8996 workers/api.js:9112
294
+ #: workers/api.js:9113 workers/api.js:9229
303
295
  msgid "Requested page not found"
304
296
  msgstr "Soovitud lehekülge ei leitud"
305
297
 
306
- #: workers/api.js:8997
298
+ #: workers/api.js:9114
307
299
  msgid "Something went wrong"
308
300
  msgstr "Miski läks valesti"
309
301
 
310
- #: lib/tools.js:1494
302
+ #: lib/tools.js:1493
311
303
  msgid "Signature validation failed"
312
304
  msgstr "Päringu allkirja kontroll ebaõnnestus"
313
305
 
314
- #: lib/tools.js:1503 lib/tools.js:1508
306
+ #: lib/tools.js:1502 lib/tools.js:1507
315
307
  msgid "Invalid or expired account setup URL"
316
308
  msgstr "Kehtetu või aegunud konto seadistamise URL"
317
309
 
@@ -327,5 +319,15 @@ msgstr ""
327
319
  "Jätkamiseks kasutage oma konto turvaliseks ühendamiseks nuppu \"Sign in with "
328
320
  "Microsoft\"."
329
321
 
322
+ #, fuzzy
323
+ #~| msgid "Failed to process account"
324
+ #~ msgid "Couldn't set up account. Try again."
325
+ #~ msgstr "Konto töötlemine ebaõnnestus"
326
+
327
+ #, fuzzy
328
+ #~| msgid "Failed to process request"
329
+ #~ msgid "Couldn't process request. Try again."
330
+ #~ msgstr "Päringu töötlemine ebaõnnestus"
331
+
330
332
  #~ msgid "Unknown OAuth provider"
331
333
  #~ msgstr "Tundmatu OAuth teenus"
Binary file