Mercurial > dotfiles
view mutt/fastmailrc @ 484:759ccf5befb2
Make lightline work when some other plugins are not enabled.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 24 Sep 2020 23:10:38 -0700 |
parents | 1a8e250fdf9d |
children | b54da4a07438 |
line wrap: on
line source
# Mutt config for FastMail. # Just define `my_user` and `my_pass` before sourcing this. # Variables set my_imap=imap.fastmail.com:993 set my_smtp=smtp.fastmail.com:465 set my_folder_inbox=INBOX set my_folder_sent="Sent Items" set my_folder_drafts="Drafts" set my_folder_trash="Trash" set my_folder_archive="Archive" # Actual connection stuff set imap_user = "$my_user" set imap_pass = "$my_pass" set smtp_url = "smtps://$my_user@$my_smtp" set smtp_pass = "$my_pass" set folder = "imaps://$my_imap/$my_folder_inbox" set spoolfile = "imaps://$my_imap/$my_folder_inbox" set record = "imaps://$my_imap/$my_folder_sent" set postponed = "imaps://$my_imap/$my_folder_drafts" set mbox = "imaps://$my_imap/$my_folder_archive" set trash = "imaps://$my_imap/$my_folder_trash" # Miscellaneous connection stuff set ssl_force_tls = yes set ssl_starttls = no set imap_check_subscribed set imap_idle # vim: ft=muttrc