This commit is contained in:
Shautvast 2026-02-25 19:44:28 +01:00
parent bd6b32fbd5
commit 3f899d0e17

View file

@ -1,38 +0,0 @@
# Passwords are stored securely in the OS keychain.
# Run `tuimail --configure` to set up credentials.
#
# This file shows all non-sensitive fields you can set manually.
# Copy it to the tuimail config directory and edit as needed, then
# run `tuimail --configure` to store passwords in the keychain.
# ── Standard IMAP/SMTP provider (default) ─────────────────────────────────────
# provider = "imap" # optional — "imap" is the default
[imap]
host = "imap.gmail.com" # your provider's IMAP server
port = 993
username = "you@example.com"
use_tls = true
[smtp]
host = "smtp.gmail.com" # your provider's SMTP server
port = 465
username = "you@example.com"
# tls_mode options: none | starttls | smtps
tls_mode = "smtps"
from = "Your Name <you@example.com>"
# ── ProtonMail provider ────────────────────────────────────────────────────────
# Uncomment the lines below (and remove or comment out [imap]/[smtp] above).
# Build with: cargo build --features proton
# Run with: cargo run --features proton
#
# provider = "proton"
#
# [proton]
# username = "you@proton.me"
#
# [bridge]
# imap_port = 1143
# smtp_port = 1025