Guest User

Untitled

a guest
May 27th, 2020
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.28 KB | None | 0 0
  1. # About Me
  2. set from = "some@email.com"
  3. set realname = "Test User"
  4.  
  5. # My credentials
  6. set smtp_url = "smtp://some@email.com@mailserver.com:587/"
  7. set smtp_pass = "password"
  8. set imap_user = "some@email.com"
  9. set imap_pass = "password"
  10.  
  11.  
  12. # My mailboxes
  13. set folder = "imaps://mailserver.com:993"
  14. set spoolfile = "+INBOX"
  15. mailboxes =INBOX =sent =private
  16.  
  17. # Where to put the stuff
  18. set header_cache = "~/.mutt/cache/headers"
  19. set message_cachedir = "~/.mutt/cache/bodies"
  20. set certificate_file = "~/.mutt/certificates"
  21.  
  22. # Etc
  23. set mail_check = 30
  24. set move = no
  25. set imap_keepalive = 900
  26. set sort = threads
  27.  
  28. # GnuPG bootstrap
  29. # source ~/.mutt/gpg.rc
  30.  
  31. # Splitted index view
  32. set pager_index_lines = 10 # number of index lines to show
  33. set pager_context = 3 # number of context lines to show
  34.  
  35.  
  36. # Color Theme
  37. source ~/.mutt/colors
  38.  
  39. set charset="UTF-8"
  40.  
  41. # Header configuration
  42. unmy_hdr *
  43. set user_agent
  44. set edit_headers
  45. unhdr_order *
  46. hdr_order From: Reply-To: Subject: To: Cc: Bcc:
  47. set editor="vim '+/^$'"
  48.  
  49. # Disable all headers in message view
  50. ignore *
  51. # Define the headers we'd like to see
  52. unignore from: date: subject: to: cc: reply-to: user-agent: x-agent: x-mailer: x-newsreader: newsgroups: posted-to: x-also-posted-to: x-lotus x-showface:
  53. # This is a complete list of sidebar-related configuration.
  54.  
  55. # --------------------------------------------------------------------------
  56. # VARIABLES - shown with their default values
  57. # --------------------------------------------------------------------------
  58.  
  59. # Should the Sidebar be shown?
  60. set sidebar_visible = no
  61.  
  62. # How wide should the Sidebar be in screen columns?
  63. # Note: Some characters, e.g. Chinese, take up two columns each.
  64. set sidebar_width = 20
  65.  
  66. # Should the mailbox paths be abbreviated?
  67. set sidebar_short_path = no
  68.  
  69. # When abbreviating mailbox path names, use any of these characters as path
  70. # separators. Only the part after the last separators will be shown.
  71. # For file folders '/' is good. For IMAP folders, often '.' is useful.
  72. set sidebar_delim_chars = '/.'
  73.  
  74. # If the mailbox path is abbreviated, should it be indented?
  75. set sidebar_folder_indent = no
  76.  
  77. # Indent mailbox paths with this string.
  78. set sidebar_indent_string = ' '
  79.  
  80. # Make the Sidebar only display mailboxes that contain new, or flagged,
  81. # mail.
  82. set sidebar_new_mail_only = no
  83.  
  84. # Any mailboxes that are whitelisted will always be visible, even if the
  85. # sidebar_new_mail_only option is enabled.
  86. sidebar_whitelist '/home/user/mailbox1'
  87. sidebar_whitelist '/home/user/mailbox2'
  88.  
  89. # When searching for mailboxes containing new mail, should the search wrap
  90. # around when it reaches the end of the list?
  91. set sidebar_next_new_wrap = no
  92.  
  93. # The character to use as the divider between the Sidebar and the other Mutt
  94. # panels.
  95. # Note: Only the first character of this string is used.
  96. set sidebar_divider_char = '|'
  97.  
  98. # Enable extended buffy mode to calculate total, new, and flagged
  99. # message counts for each mailbox.
  100. set mail_check_stats
  101.  
  102. # Display the Sidebar mailboxes using this format string.
  103. set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S'
  104.  
  105. # Sort the mailboxes in the Sidebar using this method:
  106. # count - total number of messages
  107. # flagged - number of flagged messages
  108. # new - number of new messages
  109. # path - mailbox path
  110. # unsorted - do not sort the mailboxes
  111. set sidebar_sort_method = 'unsorted'
  112.  
  113. # --------------------------------------------------------------------------
  114. # FUNCTIONS - shown with an example mapping
  115. # --------------------------------------------------------------------------
  116.  
  117. # Move the highlight to the previous mailbox
  118. bind index,pager \Cp sidebar-prev
  119.  
  120. # Move the highlight to the next mailbox
  121. bind index,pager \Cn sidebar-next
  122.  
  123. # Open the highlighted mailbox
  124. bind index,pager \Co sidebar-open
  125.  
  126. # Move the highlight to the previous page
  127. # This is useful if you have a LOT of mailboxes.
  128. bind index,pager <F3> sidebar-page-up
  129.  
  130. # Move the highlight to the next page
  131. # This is useful if you have a LOT of mailboxes.
  132. bind index,pager <F4> sidebar-page-down
  133.  
  134. # Move the highlight to the previous mailbox containing new, or flagged,
  135. # mail.
  136. bind index,pager <F5> sidebar-prev-new
  137.  
  138. # Move the highlight to the next mailbox containing new, or flagged, mail.
  139. bind index,pager <F6> sidebar-next-new
  140.  
  141. # Toggle the visibility of the Sidebar.
  142. bind index,pager B sidebar-toggle-visible
  143.  
  144. # --------------------------------------------------------------------------
  145. # COLORS - some unpleasant examples are given
  146. # --------------------------------------------------------------------------
  147. # Note: All color operations are of the form:
  148. # color OBJECT FOREGROUND BACKGROUND
  149.  
  150. # Color of the current, open, mailbox
  151. # Note: This is a general Mutt option which colors all selected items.
  152. color indicator cyan black
  153.  
  154. # Color of the highlighted, but not open, mailbox.
  155. color sidebar_highlight black color8
  156.  
  157. # Color of the divider separating the Sidebar from Mutt panels
  158. color sidebar_divider color8 black
  159.  
  160. # Color to give mailboxes containing flagged mail
  161. color sidebar_flagged red black
  162.  
  163. # Color to give mailboxes containing new mail
  164. color sidebar_new green black
  165.  
  166. # --------------------------------------------------------------------------
  167.  
  168. # vim: syntax=muttrc
Add Comment
Please, Sign In to add comment