Skip to content

Instantly share code, notes, and snippets.

@confluencepoint
Forked from facundofarias/mutt_on_osx.sh
Created June 21, 2020 14:34
Show Gist options
  • Select an option

  • Save confluencepoint/2e66d4028ce06c5f04102d93397900d9 to your computer and use it in GitHub Desktop.

Select an option

Save confluencepoint/2e66d4028ce06c5f04102d93397900d9 to your computer and use it in GitHub Desktop.
Installing and configuring Mutt on OSX
# 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