Advertisement
Guest User

Untitled

a guest
Mar 28th, 2018
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. set imap_user="username@gmail.com"
  2. set imap_pass="pass"
  3.  
  4. set folder=imaps://imap.gmail.com/
  5. set spoolfile=+INBOX
  6. set record="+[Gmail]/Sent Mail"
  7. set postponed="+[Gmail]/Drafts"
  8.  
  9. # https://www.neomutt.org/guide/reference search sleep_time for additional info
  10. set sleep_time=0 # be faster
  11. set beep=no # no beep sound
  12. set editor="nvim"
  13. auto_view text/html
  14. set sort=reverse-date # default sorting by date
  15. # When sorting by threads, this variable controls how threads are sorted
  16. # in relation to other threads, and how the branches of the thread trees are sorted.
  17. set sort_aux=last-date-received
  18. # Index page format. Default "%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"
  19. set index_format="%4C %Z %{%b %d %R} %-15.15L (%?l?%4l&%4c?) %s"
  20.  
  21. set sidebar_visible
  22. set sidebar_format="%B%?F? [%F]?%* %?N?%N/?%S"
  23. set mail_check_stats
  24.  
  25. # You can use any gmail imap mailboxes
  26. mailboxes =INBOX =[Gmail]/Sent\ Mail =[Gmail]/Drafts =[Gmail]/Spam =[Gmail]/Trash
  27.  
  28. # Vim like binds
  29. bind attach,index,pager \CD next-page
  30. bind attach,index,pager \CU previous-page
  31. bind pager g top
  32. bind pager G bottom
  33. bind attach,index g first-entry
  34. bind attach,index G last-entry
  35.  
  36. # Sidebar binds
  37. bind index,pager \CP sidebar-prev # Ctrl-n to select next folder
  38. bind index,pager \CN sidebar-next # Ctrl-p to select previous folder
  39. bind index,pager \CI sidebar-open # Ctrl-o to open selected folder
  40. bind index,pager \CB sidebar-toggle-visible # Ctrl-b to toggle visibility of the sidebar
  41.  
  42. set realname="realname"
  43. set from="email"
  44.  
  45. set smtp_url="smtps://username@gmail.com@smtp.gmail.com:465/"
  46. set smtp_pass="pass"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement