Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. # Install mutt using brew
  2. $ brew install mutt
  3.  
  4. # Configure mutt
  5. $ vim ~/.muttrc
  6.  
  7. # Put the following on the mutt config file (.muttrc)
  8. set imap_user = “YOUR_USERNAME@GMAIL_OR_YOUR_DOMAIN.com”
  9. set imap_pass = “YOUR_PASSWORD”
  10. set smtp_url = “smtp://YOUR_USERNAME@GMAIL_OR_YOUR_DOMAIN@smtp.gmail.com:587/”
  11. set smtp_pass = “YOUR_PASSWORD”
  12. set from = “YOUR_USERNAME@GMAIL_OR_YOUR_DOMAIN.com”
  13. set realname = “YOUR_NAME”
  14. set folder = “imaps://imap.gmail.com:993"
  15. set spoolfile = “+INBOX”
  16. set postponed = “+[Gmail]/Drafts”
  17. set header_cache = ~/.mutt/cache/headers
  18. set message_cachedir = ~/.mutt/cache/bodies
  19. set certificate_file = ~/.mutt/certificates
  20. set move = no
  21. set smtp_authenticators = ‘gssapi:login’
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement