Files
poke-mail/config.example.yml
T

39 lines
1.3 KiB
YAML

# poke-mail configuration
# Copy this file to config.yml and fill in your credentials
webhook_url: "https://poke.com/api/v1/inbound-sms/webhook"
poke_api_key: "your-api-key-here"
# MCP_API_KEY is set via environment variable (not in this file)
# It secures the MCP server so only you can use it
# Global send toggle — set to false to disable send_email for all accounts
# Agents can still use create_draft. Override per account with allow_send.
allow_send: true
accounts:
# iCloud Mail — login is @icloud.com, send as your custom domain
# Generate an App-Specific Password: https://support.apple.com/en-us/102654
- id: icloud
imap_host: imap.mail.me.com
imap_username: "you@icloud.com"
imap_password: "your-app-password"
smtp_host: smtp.mail.me.com
smtp_username: "you@icloud.com"
smtp_password: "your-app-password"
from_address: "you@yourdomain.com" # Override From: header (login is @icloud.com but send as custom domain)
watch_folders:
- INBOX
# Custom SMTP server — SMTP falls back to IMAP credentials if not specified
# - id: work
# imap_host: imap.example.com
# imap_username: "you@example.com"
# imap_password: "your-password"
# smtp_host: smtp.example.com
# smtp_port: 587
# smtp_username: "you@example.com"
# smtp_password: "your-password"
# watch_folders:
# - INBOX