agenticmail 0.5.54 → 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.
Files changed (2) hide show
  1. package/dist/cli.js +6 -0
  2. package/package.json +1 -1
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.54",
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",