# get_email_settings

> Get the IMAP / POP3 / SMTP settings for a mailbox, ready to paste into a mail client.

- Tier: R
- Required scope: read:email
- Annotations: readOnlyHint, idempotentHint
- Docs: https://api.inleed.com/tools/get-email-settings

## Description

Get the IMAP / POP3 / SMTP settings for a mailbox, ready to paste into a mail client. Returns the `username` (the full address), the server `host` (always mail.inleed.com — never mail.<domain> and never a server name), and `recommended` `{incoming: IMAP 993 ssl/tls, outgoing: SMTP 587 starttls}` plus the imap/pop3/smtp blocks. It never returns the mailbox password — to reset that use `set_mailbox_password`. This is client-connection info, not deliverability: for "mail going to spam" use `check_email_deliverability`, and for a single mailbox's quota use `list_mailboxes`.

## Input schema

- `address` — string (required). The full mailbox address to get settings for, e.g. sales@example.com.

## Example call

```json
{
  "name": "get_email_settings",
  "arguments": {
    "address": "info@example.se"
  }
}
```

