Coqui Toolkit: IMAP

coquibot/coqui-toolkit-imap

IMAP email management toolkit for Coqui — read, search, send, reply, and organize emails

toolkit-imap
0 downloads 0 stars

Required Credentials

0

IMAP_HOST

1

IMAP_USERNAME

2

IMAP_PASSWORD

3

IMAP_PORT

4

IMAP_ENCRYPTION

5

SMTP_HOST

6

SMTP_PORT

7

SMTP_USERNAME

8

SMTP_PASSWORD

9

SMTP_ENCRYPTION

Package Info

{
  "gated": {
    "imap_move": [
      "*"
    ],
    "imap_send": [
      "*"
    ],
    "imap_reply": [
      "*"
    ],
    "imap_delete": [
      "*"
    ],
    "imap_folder_manage": [
      "delete"
    ]
  },
  "toolkits": [
    "CoquiBot\\Toolkits\\Imap\\ImapToolkit"
  ],
  "credentials": {
    "IMAP_HOST": "IMAP server hostname (e.g., imap.gmail.com, outlook.office365.com)",
    "IMAP_PORT": {
      "optional": true,
      "description": "IMAP server port (default: 993)"
    },
    "SMTP_HOST": {
      "optional": true,
      "description": "SMTP server hostname — defaults to IMAP host if not set"
    },
    "SMTP_PORT": {
      "optional": true,
      "description": "SMTP server port (default: 587)"
    },
    "IMAP_PASSWORD": "Email password or app-specific password for IMAP authentication",
    "IMAP_USERNAME": "Email address or username for IMAP authentication",
    "SMTP_PASSWORD": {
      "optional": true,
      "description": "SMTP password — defaults to IMAP password if not set"
    },
    "SMTP_USERNAME": {
      "optional": true,
      "description": "SMTP username — defaults to IMAP username if not set"
    },
    "IMAP_ENCRYPTION": {
      "optional": true,
      "description": "IMAP encryption method: ssl or tls (default: ssl)"
    },
    "SMTP_ENCRYPTION": {
      "optional": true,
      "description": "SMTP encryption method: tls or ssl (default: tls)"
    }
  },
  "description": "IMAP email management — read, search, send, reply, and organize emails directly from the terminal"
}