Files
nanobot/nanobot/channels/email/webui/locales/en.json
T
chengyongruandGitHub 462a0dfb0f refactor(channels): make built-in channels self-contained (#4908)
* refactor(channels): own setup and instance contracts

* refactor(channels): isolate management contracts

* refactor(channels): normalize activation contracts

* fix(channels): enforce management contracts

* refactor(channels): finish setup ownership migration

* fix(channels): harden management contracts

* fix(channels): enforce lazy loading and runtime ownership

* fix(feishu): make multi-instance startup idempotent

* fix(webui): render channel setup contracts cleanly

* fix(feishu): stop websocket clients cleanly

* fix(channels): enforce persistence and activation gates

* fix(channels): preserve global feature action scope

* fix(channels): apply defaults for single plugins

* fix(channels): enforce management contract boundaries

* refactor(feishu): remove identity helper indirection

* fix(channels): preserve management setup contracts

* refactor(channels): generalize instance settings UI

* refactor(channels): package channel plugins with web UI metadata

* refactor(channels): make built-ins self-contained packages

* test(channels): colocate tests with channel packages

* fix(dingtalk): use official brand icon

* feat(channels): colocate webui translations

* docs(channels): clarify plugin ownership

* test(exec): remove output wait race

* refactor(channels): unify plugin descriptors

* fix(channels): enforce descriptor-owned contracts

* refactor(channels): finish package-owned plugin setup

* refactor(channels): use repository-owned packages only

* fix(channels): self-describe dependencies and runtime state

* fix(channels): warn about legacy entry points
2026-07-19 23:30:49 +08:00

93 lines
2.7 KiB
JSON

{
"description": "Let nanobot receive and answer email messages.",
"requirements": "IMAP inbox, SMTP sender, app password, explicit consent",
"setup": {
"docsLabel": "Open Email setup",
"officialLabel": "Open app password guide",
"tryIt": "Send a test email to the connected mailbox.",
"summary": "Email reads messages over IMAP and replies over SMTP. Use a dedicated mailbox and grant consent before enabling it.",
"steps": [
"Create a dedicated mailbox and, when required, an app password.",
"Choose a provider preset or enter the IMAP and SMTP settings manually.",
"Grant consent, save and enable Email, then send a test message to the mailbox."
],
"presets": {
"gmail": "Gmail",
"outlook": "Outlook",
"icloud": "iCloud",
"custom": "Custom"
},
"fields": {
"consentGranted": {
"label": "Consent granted",
"help": "Required safety switch. Leave false until this bot mailbox is intentionally connected.",
"choices": {
"true": "Granted",
"false": "Not granted"
}
},
"imapHost": {
"label": "IMAP host",
"placeholder": "imap.gmail.com"
},
"imapUsername": {
"label": "IMAP username",
"placeholder": "bot@example.com"
},
"imapPassword": {
"label": "IMAP password",
"placeholder": "App password",
"help": "Use an app password when your mail provider requires one."
},
"smtpHost": {
"label": "SMTP host",
"placeholder": "smtp.gmail.com"
},
"smtpUsername": {
"label": "SMTP username",
"placeholder": "bot@example.com"
},
"smtpPassword": {
"label": "SMTP password",
"placeholder": "App password",
"help": "Usually the same app password used for IMAP."
},
"imapPort": {
"label": "IMAP port",
"placeholder": "993"
},
"smtpPort": {
"label": "SMTP port",
"placeholder": "587"
},
"fromAddress": {
"label": "From address",
"placeholder": "bot@example.com"
},
"pollIntervalSeconds": {
"label": "Poll interval",
"placeholder": "30"
},
"allowFrom": {
"label": "Allowed senders",
"placeholder": "Email addresses, comma separated",
"help": "Leave empty to require pairing before a sender can use email."
},
"verifyDkim": {
"label": "Verify DKIM",
"choices": {
"true": "On",
"false": "Off"
}
},
"verifySpf": {
"label": "Verify SPF",
"choices": {
"true": "On",
"false": "Off"
}
}
}
}
}