Switch webhook endpoint to Poke SDK's /inbound/api-message

This commit is contained in:
Kacper Kwapisz
2026-03-23 16:38:53 +01:00
parent df2dc57600
commit b3a5cd4c5b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ cp config.example.yml config.yml
Edit `config.yml` with your email credentials: Edit `config.yml` with your email credentials:
```yaml ```yaml
webhook_url: https://poke.com/api/v1/inbound-sms/webhook webhook_url: https://poke.com/api/v1/inbound/api-message
poke_api_key: your-api-key # from https://poke.com/settings/advanced poke_api_key: your-api-key # from https://poke.com/settings/advanced
accounts: accounts:
+1 -1
View File
@@ -1,7 +1,7 @@
# poke-mail configuration # poke-mail configuration
# Copy this file to config.yml and fill in your credentials # Copy this file to config.yml and fill in your credentials
webhook_url: "https://poke.com/api/v1/inbound-sms/webhook" webhook_url: "https://poke.com/api/v1/inbound/api-message"
poke_api_key: "your-api-key-here" poke_api_key: "your-api-key-here"
# MCP_API_KEY is set via environment variable (not in this file) # MCP_API_KEY is set via environment variable (not in this file)
+1 -1
View File
@@ -452,7 +452,7 @@ async def lifespan(server: FastMCP):
accounts = parse_accounts(config) accounts = parse_accounts(config)
webhook_url = os.environ.get( webhook_url = os.environ.get(
"POKE_WEBHOOK_URL", "POKE_WEBHOOK_URL",
config.get("webhook_url", "https://poke.com/api/v1/inbound-sms/webhook"), config.get("webhook_url", "https://poke.com/api/v1/inbound/api-message"),
) )
api_key = os.environ.get("POKE_API_KEY", config.get("poke_api_key", "")) api_key = os.environ.get("POKE_API_KEY", config.get("poke_api_key", ""))
stop_event = asyncio.Event() stop_event = asyncio.Event()