Some checks failed
Smoke Test / smoke (pull_request) Failing after 20s
Architecture Lint / Linter Tests (pull_request) Successful in 24s
Validate Config / YAML Lint (pull_request) Failing after 16s
Validate Config / JSON Validate (pull_request) Successful in 18s
Validate Config / Python Syntax & Import Check (pull_request) Failing after 58s
Validate Config / Shell Script Lint (pull_request) Failing after 1m2s
Validate Config / Cron Syntax Check (pull_request) Successful in 12s
Validate Config / Deploy Script Dry Run (pull_request) Successful in 10s
Validate Config / Python Test Suite (pull_request) Has been skipped
Validate Config / Playbook Schema Validation (pull_request) Successful in 23s
Architecture Lint / Lint Repository (pull_request) Failing after 20s
PR Checklist / pr-checklist (pull_request) Successful in 2m54s
Add himalaya configuration template and Hermes .env email variables. - Add config/himalaya/config.toml.example with IMAP/SMTP settings - Add EMAIL_* environment variables to .env.example for agent access - Provides template for Gmail and generic providers - Enables himalaya envelope list and message send workflows Closes #321
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
# Himalaya Email Client Configuration Template
|
|
# Copy to ~/.config/himalaya/config.toml and fill in real values.
|
|
# See: https://github.com/soywod/himalaya
|
|
|
|
[default]
|
|
# Default sender address (must match SMTP username)
|
|
from = "YOUR_EMAIL@example.com"
|
|
# Default mailbox to check
|
|
mailbox = "INBOX"
|
|
|
|
[imap]
|
|
# IMAP server host (e.g., imap.gmail.com, imap.fastmail.com, outlook.office365.com)
|
|
host = "imap.example.com"
|
|
# IMAP port (993 for SSL/TLS, 143 for STARTTLS)
|
|
port = 993
|
|
# IMAP username (usually full email address)
|
|
username = "YOUR_EMAIL@example.com"
|
|
# App-specific password recommended (not your main account password)
|
|
password = "YOUR_APP_PASSWORD"
|
|
# Use SSL/TLS (true for port 993, false for STARTTLS)
|
|
ssl = true
|
|
|
|
[smtp]
|
|
# SMTP server host (e.g., smtp.gmail.com, smtp.fastmail.com, smtp.office365.com)
|
|
host = "smtp.example.com"
|
|
# SMTP port (587 for STARTTLS, 465 for SSL/TLS)
|
|
port = 587
|
|
# SMTP username (usually full email address)
|
|
username = "YOUR_EMAIL@example.com"
|
|
# App-specific password
|
|
password = "YOUR_APP_PASSWORD"
|
|
# Use STARTTLS (true for port 587)
|
|
starttls = true
|
|
|
|
[imap.gmail]
|
|
# Example Gmail config (uncomment to use)
|
|
# host = "imap.gmail.com"
|
|
# port = 993
|
|
# username = "your.email@gmail.com"
|
|
# password = "APP_PASSWORD"
|
|
# ssl = true
|
|
|
|
[smtp.gmail]
|
|
# host = "smtp.gmail.com"
|
|
# port = 587
|
|
# username = "your.email@gmail.com"
|
|
# password = "APP_PASSWORD"
|
|
# starttls = true
|