agenticmail 0.5.53 → 0.5.55
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/dist/cli.js +6 -0
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -5247,6 +5247,12 @@ function parseFriendlyError(rawText) {
|
|
|
5247
5247
|
isAuthError: false
|
|
5248
5248
|
};
|
|
5249
5249
|
}
|
|
5250
|
+
if (error.includes("Stalwart API error") && error.includes("404")) {
|
|
5251
|
+
return {
|
|
5252
|
+
message: "Mail server is in bootstrap mode (likely Stalwart 0.16+ on `:latest`). Pull the pinned image and recreate the container: `docker compose -f ~/.agenticmail/docker-compose.yml pull && docker compose -f ~/.agenticmail/docker-compose.yml up -d --force-recreate`. See https://github.com/agenticmail/agenticmail/issues/10",
|
|
5253
|
+
isAuthError: false
|
|
5254
|
+
};
|
|
5255
|
+
}
|
|
5250
5256
|
if (error.includes("Invalid API key") || error.includes("Master API key required")) {
|
|
5251
5257
|
return {
|
|
5252
5258
|
message: "Server authorization failed \u2014 the mail server may still be starting up. Try again in a moment.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agenticmail",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.55",
|
|
4
4
|
"description": "Email and SMS infrastructure for AI agents — the first platform to give agents real email addresses and phone numbers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"prepublishOnly": "npm run build"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@agenticmail/api": "^0.5.
|
|
31
|
+
"@agenticmail/api": "^0.5.53",
|
|
32
32
|
"@agenticmail/core": "^0.5.0",
|
|
33
33
|
"json5": "^2.2.3"
|
|
34
34
|
},
|