Hermes Docs
CLI Reference

mailbox

Manage email mailboxes

hermes mailbox

Manage your email sending mailboxes.

List Mailboxes

hermes mailbox list

Returns all configured mailboxes with IMAP/SMTP details.

Output

{
  "items": [
    {
      "id": "62f3f30f-...",
      "email": "mario@marcalyx.com",
      "senderName": "Mario Jere",
      "domain": "marcalyx.com",
      "imapHost": "marcalyx.com",
      "imapPort": 993,
      "smtpHost": "marcalyx.com",
      "smtpPort": 465,
      "status": "active",
      "hasImapCredentials": true,
      "hasSmtpCredentials": true
    }
  ]
}

Add Mailbox

hermes mailbox add \
  --email "john@company.com" \
  --sender-name "John" \
  --imap-host "imap.company.com" \
  --smtp-host "smtp.company.com"

Validate Mailbox

hermes mailbox validate --id 62f3f30f-...

Tests the IMAP/SMTP connection for a specific mailbox.

On this page