-
-
Save confluencepoint/2e66d4028ce06c5f04102d93397900d9 to your computer and use it in GitHub Desktop.
Installing and configuring Mutt on OSX
This file contains hidden or 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
| # Install mutt using brew | |
| $ brew install mutt | |
| # Configure mutt | |
| $ vim ~/.muttrc | |
| # Put the following on the mutt config file (.muttrc) | |
| set imap_user = “YOUR_USERNAME@GMAIL_OR_YOUR_DOMAIN.com” | |
| set imap_pass = “YOUR_PASSWORD” | |
| set smtp_url = “smtp://YOUR_USERNAME@GMAIL_OR_YOUR_DOMAIN@smtp.gmail.com:587/” | |
| set smtp_pass = “YOUR_PASSWORD” | |
| set from = “YOUR_USERNAME@GMAIL_OR_YOUR_DOMAIN.com” | |
| set realname = “YOUR_NAME” | |
| set folder = “imaps://imap.gmail.com:993" | |
| set spoolfile = “+INBOX” | |
| set postponed = “+[Gmail]/Drafts” | |
| set header_cache = ~/.mutt/cache/headers | |
| set message_cachedir = ~/.mutt/cache/bodies | |
| set certificate_file = ~/.mutt/certificates | |
| set move = no | |
| set smtp_authenticators = ‘gssapi:login’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment