# Carrier config — copy to ~/.config/carrier/config.toml, chmod 600. # # Passwords are NEVER inline. Each account names an env var (`password_env`) # AND a fallback file (`password_file`). Lookup order: # 1. env var # 2. shell-format file (`KEY=VALUE` per line) # 3. hard fail with a vault-pointer hint # # Vault canonical: bw.sulkta.com → "kayos@sulkta.com — IMAP/SMTP". default_account = "kayos" [accounts.kayos] from_name = "Kayos" from_addr = "kayos@sulkta.com" smtp_host = "mail.sulkta.com" smtp_port = 587 smtp_starttls = true imap_host = "mail.sulkta.com" imap_port = 993 imap_tls = true username = "kayos@sulkta.com" password_env = "KAYOS_SMTP_PASS" password_file = "~/.config/kayos-mail/smtp.env" # Optional: pin Message-ID domain. Defaults to the part of `from_addr` # after the @ if unset. # message_id_domain = "sulkta.com"