From d5e80f164e78393f7b6c94316f3133cfae1dafed Mon Sep 17 00:00:00 2001 From: Kacper Kwapisz Date: Sun, 22 Mar 2026 22:00:28 +0100 Subject: [PATCH] Quote YAML values containing colons in config example --- config.example.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config.example.yml b/config.example.yml index 2657240..be4cf37 100644 --- a/config.example.yml +++ b/config.example.yml @@ -1,8 +1,8 @@ # 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 # from https://poke.com/settings/advanced +webhook_url: "https://poke.com/api/v1/inbound-sms/webhook" +poke_api_key: "your-api-key-here" # from https://poke.com/settings/advanced # MCP_API_KEY is set via environment variable (not in this file) # It secures the MCP server so only you can use it @@ -11,11 +11,11 @@ accounts: - id: default imap_host: imap.gmail.com imap_port: 993 - imap_username: you@gmail.com - imap_password: your-app-password + imap_username: "you@gmail.com" + imap_password: "your-app-password" smtp_host: smtp.gmail.com smtp_port: 587 - smtp_username: you@gmail.com - smtp_password: your-app-password + smtp_username: "you@gmail.com" + smtp_password: "your-app-password" watch_folders: - INBOX