mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-08-10 22:38:40 +03:00
* 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
93 lines
2.8 KiB
JSON
93 lines
2.8 KiB
JSON
{
|
|
"description": "Permite que nanobot reciba y responda correos.",
|
|
"requirements": "Bandeja IMAP, envío SMTP, contraseña de app y consentimiento explícito",
|
|
"setup": {
|
|
"docsLabel": "Abrir guía de Email",
|
|
"officialLabel": "Abrir guía de contraseñas de app",
|
|
"tryIt": "Envía un correo de prueba al buzón conectado.",
|
|
"summary": "Email lee mensajes por IMAP y responde por SMTP. Usa un buzón dedicado y da tu consentimiento antes de activarlo.",
|
|
"steps": [
|
|
"Crea un buzón dedicado y, si hace falta, una contraseña de app.",
|
|
"Elige un proveedor o introduce manualmente IMAP y SMTP.",
|
|
"Da tu consentimiento, guarda y activa Email; después envía un mensaje de prueba."
|
|
],
|
|
"presets": {
|
|
"gmail": "Gmail",
|
|
"outlook": "Outlook",
|
|
"icloud": "iCloud",
|
|
"custom": "Personalizado"
|
|
},
|
|
"fields": {
|
|
"consentGranted": {
|
|
"label": "Consentimiento concedido",
|
|
"help": "Control de seguridad obligatorio. Déjalo desactivado hasta decidir conectar este buzón al bot.",
|
|
"choices": {
|
|
"true": "Concedido",
|
|
"false": "No concedido"
|
|
}
|
|
},
|
|
"imapHost": {
|
|
"label": "Host IMAP",
|
|
"placeholder": "imap.gmail.com"
|
|
},
|
|
"imapUsername": {
|
|
"label": "Usuario IMAP",
|
|
"placeholder": "bot@example.com"
|
|
},
|
|
"imapPassword": {
|
|
"label": "Contraseña IMAP",
|
|
"placeholder": "Contraseña de app",
|
|
"help": "Usa una contraseña de app si el proveedor la exige."
|
|
},
|
|
"smtpHost": {
|
|
"label": "Host SMTP",
|
|
"placeholder": "smtp.gmail.com"
|
|
},
|
|
"smtpUsername": {
|
|
"label": "Usuario SMTP",
|
|
"placeholder": "bot@example.com"
|
|
},
|
|
"smtpPassword": {
|
|
"label": "Contraseña SMTP",
|
|
"placeholder": "Contraseña de app",
|
|
"help": "Normalmente es la misma que para IMAP."
|
|
},
|
|
"imapPort": {
|
|
"label": "Puerto IMAP",
|
|
"placeholder": "993"
|
|
},
|
|
"smtpPort": {
|
|
"label": "Puerto SMTP",
|
|
"placeholder": "587"
|
|
},
|
|
"fromAddress": {
|
|
"label": "Dirección remitente",
|
|
"placeholder": "bot@example.com"
|
|
},
|
|
"pollIntervalSeconds": {
|
|
"label": "Intervalo de consulta",
|
|
"placeholder": "30"
|
|
},
|
|
"allowFrom": {
|
|
"label": "Remitentes permitidos",
|
|
"placeholder": "Correos separados por comas",
|
|
"help": "Déjalo vacío para exigir vinculación previa."
|
|
},
|
|
"verifyDkim": {
|
|
"label": "Verificar DKIM",
|
|
"choices": {
|
|
"true": "Activado",
|
|
"false": "Desactivado"
|
|
}
|
|
},
|
|
"verifySpf": {
|
|
"label": "Verificar SPF",
|
|
"choices": {
|
|
"true": "Activado",
|
|
"false": "Desactivado"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|