# 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