-
-
Save sskset/4edef67e866b66ccf3832f96911a7810 to your computer and use it in GitHub Desktop.
Hotmail template config for mutt, just insert your mail account and password to "imap_user" and "imap_pass", if 2-factor is enable, generate an app password.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set ssl_starttls=yes | |
set ssl_force_tls=yes | |
set imap_user = '[email protected]' | |
set imap_pass = 'password_here' | |
set from= $imap_user | |
set use_from=yes | |
set realname='Your_Name' | |
set folder = imaps://imap-mail.outlook.com:993 | |
set spoolfile = "+INBOX" | |
set postponed="+[hotmail]/Drafts" | |
set mail_check = 100 | |
set header_cache = "~/.mutt/cache/headers" | |
set message_cachedir = "~/.mutt/cache/bodies" | |
set certificate_file = "~/.mutt/certificates" | |
set smtp_url = "smtp://[email protected]:587" | |
set smtp_pass = $imap_pass | |
set move = no | |
set imap_keepalive = 900 | |
set record="+Sent" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment