Guest User

Untitled

a guest
Dec 9th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. source "gpg -d ~/.mutt/passwords.gpg |"
  2. set realname = "Your Name"
  3. set from = "user@example.com"
  4. set use_from = yes
  5. set envelope_from = yes
  6.  
  7. # Ensure TLS is enforced
  8. set ssl_starttls = yes
  9. set ssl_force_tls = yes
  10.  
  11. # Protocol: smtp for TLS (587), smtps for SSL (465)
  12. set smtp_url = "smtp://user@example.com@smtp.gmail.com:587/"
  13. set imap_user = "user@example.com"
  14. set imap_keepalive = 900
  15. set folder = "imaps://imap.gmail.com:993"
  16. set spoolfile = "+INBOX"
  17. set record = "+[Gmail]/Sent Mail"
  18. set postponed = "+[Gmail]/Drafts"
  19. set header_cache = "~/.mutt/cache/headers"
  20. set message_cachedir = "~/.mutt/cache/bodies"
  21. set certificate_file = "~/.mutt/certificates"
  22. set move = no
  23.  
  24. set editor = "vim"
  25. set charset = "utf-8"
  26. set record = ""
  27. set date_format="%d %b %Y - %H:%M:%S" # Date style like [09 dec 2018 - 14:56:44]
  28. set index_format="%4C %Z [%D] %-20.20L (%?l?%4l&%4c?) %s"
  29.  
  30. auto_view text/html # view html automatically
  31. alternative_order text/plain text/enriched text/html # save html for last
Add Comment
Please, Sign In to add comment