Guest User

Untitled

a guest
Apr 26th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. # .muttrc file - Modified by Suresh Ramasubramanian's
  2. ignore *
  3. unignore From To Cc Bcc Subject Date Reply-To Organization X-Mailer User-Agent
  4.  
  5. hdr_order From: Date: To: Cc: Subject:
  6.  
  7. # Header caching
  8. set header_cache=~/.hcache
  9.  
  10. # Base hook to reset account variables to known state before activating new ones
  11. account-hook . 'unset folder spoolfile preconnect imap_user imap_pass imap_authenticators; set ssl_starttls=ask-yes'
  12.  
  13. #source $HOME/.mutt/accounts/***
  14. account-hook imaps://mail.***.cc/ set imap_user=***.cc imap_pass=***
  15. folder-hook imaps://mail.***.cc/ set postponed=+Drafts record=+Sent mbox=+Archived trash=+Trash
  16.  
  17. set folder=imaps://mail.***.cc/INBOX
  18. mailboxes = =Archived
  19.  
  20. #source $HOME/.mutt/accounts/***
  21. account-hook imaps://mail.***/ set imap_authenticators="digest-md5:cram-md5:login" imap_user=***@mail.*** imap_pass=***
  22. folder-hook imaps://mail.***/ set postponed=+Drafts record=+Sent mbox=+Archived trash=+Trash
  23.  
  24. set folder=imaps://mail.***/INBOX
  25. mailboxes = =Archived
  26.  
  27. # Automatically begin editing messages
  28. set autoedit=yes
  29.  
  30. # IMAP settings
  31. set mail_check=90
  32. set timeout=15
  33.  
  34. set edit_headers
  35.  
  36. # Append messages to other mailboxes automatically
  37. unset confirmappend
  38.  
  39. # Automatically delete messages
  40. set delete=yes
  41.  
  42. # View html mails using lynx
  43. set mailcap_path="~/.mailcap"
  44. set mailcap_sanitize=yes
  45.  
  46. # envelope sender must match
  47. set envelope_from
  48. # Reply FASTER!
  49. #set fast_reply
  50.  
  51. # Don't save outgoing attachments
  52. unset fcc_attach
  53.  
  54. # Dont include self in reply
  55. unset reply_self
  56.  
  57. # Include full headers in replies
  58. # set header
  59.  
  60. # Automatically quote message
  61. set include=yes
  62.  
  63. # Set quotemark to 1 byte
  64. set indent_str="> "
  65.  
  66. set index_format = "%4C %Z %{%b %d} %-15.15F (%4l) %s"
  67. set forward_format="Fw: %s" # subject in forwarded messages
  68. set date_format="%d/%m/%y %H:%M %Z"
  69. set quote_regexp="^([A-Za-z ]+>|[]%>:|}-][]>:|}-]*)"
  70. #set reply_regexp="^(re([\\[0-9\\]+])*|aw):[ \t]*"
  71. set reply_regexp='^((re(\[[0-9]+\])?: *)?(\[[^]]+\] *)?)*'
  72.  
  73. set mime_forward=ask-yes
  74. set edit_headers
  75.  
  76. # Use vim as the editor - this line will wrap
  77. # Set wordwrap on in vim to automatically wrap lines -
  78. # no :gq all the time
  79. set editor="vim +':set textwidth=77' +':set wrap' +\`awk '/^$/ {print i+2; exit} {i++}' %s\` %s"
  80. #set visual=vim # editor invoked by ~v in the builtin editor
  81.  
  82. # set format=flowed
  83. set text_flowed
  84.  
  85. # dont mark messages old
  86. set nomark_old
  87.  
  88. # I don't want to resume postponed messages
  89. #set recall=no
  90.  
  91. # Don't confirm using Reply-To: headers
  92. set reply_to=yes
  93.  
  94. # Delete empty mailboxes
  95. unset save_empty
  96.  
  97. # Use as from the address mail was sent to
  98. # You'd have to define $alternates for this
  99. # set reverse_name
  100.  
  101. # Set my web browser
  102. #set web_browser="lynx %s"
  103.  
  104. # Apply operations to tagged messages automatically
  105. #set auto_tag
  106.  
  107. folder-hook . set sort=threads
  108.  
  109. # Ignore annoying MAIL SYSTEM INTERNAL DATA message
  110. # generated by c-client (pine / uw-imapd)
  111. folder-hook . "push \"l!(~s 'FOLDER INTERNAL DATA')\n*\""
  112.  
  113. # Don't ask to move read messages to mbox on exit
  114. set move=no
  115.  
  116. ###
  117. # Bindings - change key bindings
  118. ###
  119.  
  120. # Customize the pager
  121. bind pager down next-page
  122. bind pager up previous-page
  123. # dual window view in mutt
  124. set pager_index_lines=15
  125.  
  126. # Similar settings for the index
  127. bind index up previous-line
  128. bind index down next-line
  129.  
  130. # imitate the old search-body function
  131. macro index \eb '/~b ' 'search in message bodies'
  132.  
  133. # simluate the old url menu
  134. macro index \cb |urlview\n 'call urlview to extract URLs out of a message'
  135. macro pager \cb |urlview\n 'call urlview to extract URLs out of a message'
  136.  
  137. # Set and source our alias file
  138. #set alias_file=~/.mutt-aliases
  139. #source ~/.mutt-aliases
  140.  
  141. # Theming
  142. source $HOME/.mutt/themes/ilgufo
Add Comment
Please, Sign In to add comment