From 3f899d0e17580a3357fa14e92094144300967aa7 Mon Sep 17 00:00:00 2001 From: Shautvast Date: Wed, 25 Feb 2026 19:44:28 +0100 Subject: [PATCH] obsolete --- config.toml.example | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 config.toml.example diff --git a/config.toml.example b/config.toml.example deleted file mode 100644 index c1e9e22..0000000 --- a/config.toml.example +++ /dev/null @@ -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 " - - -# ── 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