Advertisement
Guest User

Untitled

a guest
Apr 6th, 2016
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. ##
  2. ## Email configuration.
  3. ##
  4.  
  5.  
  6. # IMAP Connection
  7. set imap_user = 'tomphoolery@me.com'
  8. set imap_pass = 'youwish'
  9. set spoolfile = 'imaps://imap.mail.me.com:993/INBOX'
  10. set folder = 'imaps://imap.gmail.com:993'
  11. set postponed = 'imaps://imap.mail.me.com/Drafts'
  12. set message_cachedir=~/.mutt/cache/bodies
  13. set certificate_file=~/.mutt/certificates
  14.  
  15. # SMTP Connection
  16. set smtp_url = "smtp://tomphoolery@me.com@smtp.mail.me.com:587/"
  17. set smtp_pass = "youwish"
  18. set from = "tom.scott@elocal.com"
  19. set realname = "Tom Scott"
  20.  
  21. # Reading
  22. mailboxes = INBOX /var/mail/necromancer
  23. set mail_check=300 # Check for new mail every 5 minutes
  24. auto_view text/html # View as HTML with `lynx -dump`
  25. alternative_order text/enriched text/plain text/html
  26. set smart_wrap = yes # Wrap at word boundaries if possible
  27. set pager_index_lines = 6 # Show a few lines from the index above the msg
  28. set pager_stop = yes # PgDown at bottom does not move to next message
  29. set markers = no # Don't add "+" on wrapped lines (hard to copy)
  30. set sort=threads # Sort into threads
  31.  
  32. # Composing
  33. set signature = "~/.signature"
  34. set postpone = ask-yes
  35. set postponed = =MuttMail/postponed
  36. set editor = 'vim +/^$ "+normal j"' # Open vim one line past first blank line
  37. set fast_reply = yes
  38. set abort_nosubject = no
  39. set abort_unmodified = ask-yes
  40.  
  41. # Headers
  42. set hdrs = yes # ???
  43. set header = yes # Headers in reply
  44. set edit_headers = yes # Headers in editor
  45.  
  46. # Sending
  47. #set write_bcc = yes
  48. set use_from = yes
  49. set envelope_from = yes
  50.  
  51. # Replying
  52. set reply_self = no # Reply to recipients, not to myself on my own msgs
  53. set indent_string = "> "
  54. set include = yes
  55. set attribution = "On %d, %n wrote:"
  56. set bounce_delivered = yes
  57.  
  58. # Forwarding
  59. set forward_format = "Fwd: %s"
  60. set forward_quote = yes
  61.  
  62. # Folders
  63. set copy = yes # Save copy of outgoing msgs
  64. set record="imaps://imap.gmail.com/[Gmail]/Sent Mail" # where do we keep sents?
  65. set move = no
  66. set fcc_attach = yes # Save outgoing attachments
  67. set fcc_clear = no # Keep encryption/signatures
  68. set folder_format="%F %-8.8u %-8.8g %d %8s %N %f"
  69.  
  70. # Encryption
  71. set pgp_replyencrypt = yes
  72. set pgp_replysign = yes
  73. set pgp_replysignencrypted = yes
  74. message-hook '!(~g|~G) ~b"BEGIN\ PGP\ (SIGNED\ )?MESSAGE"' "exec check-traditional-pgp" # verify old-school PGPs automatically
  75.  
  76. # Mailing Lists
  77. subscribe diaspora-dev@groups.google.com
  78. subscribe phillyrb@groups.google.com
  79. subscribe development@elocal.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement