Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. # Set Real Name
  2. set realname = "Eray Aydın";
  3.  
  4. # Set Imap Username
  5. set imap_user = turkwebdeveloper@gmail.com
  6.  
  7. # Select folder
  8. set folder = imaps://turkwebdeveloper@imap.gmail.com/
  9.  
  10. set spoolfile = +INBOX
  11. mailboxes = +INBOX
  12.  
  13. # Store message headers locally to speed things up.
  14. # If hcache is a folder, Mutt will create sub cache folders for each account which may speeds things up even more.
  15. set header_cache = ~/.cache/mutt
  16.  
  17. # Store messages locally to speed things up, like searching message bodies.
  18. # Can be the same folder as header_cache.
  19. # This will cost important disk usage according to your e-mail amount.
  20. set message_cachedir = "~/.cache/mutt"
  21.  
  22. # Specify where to save and/or look for postponed messages.
  23. set postponed = +[Gmail]/Drafts
  24.  
  25. # Allow Mutt to open new imap connection automatically.
  26. unset imap_passive
  27.  
  28. # Keep IMAP connection alive by polling intermittently (time in seconds).
  29. set imap_keepalive = 300
  30.  
  31. # How often to check for new mail (time in seconds).
  32. set mail_check = 120
  33.  
  34. # Gmail auto move mails to SEND folder
  35. unset record
  36.  
  37. set my_user="turkwebdeveloper@gmail.com"
  38.  
  39. set from = "turkwebdeveloper@gmail.com"
  40. set use_from = yes
  41.  
  42. set smtp_url = "smtps://$my_user@smtp.gmail.com:465/"
  43. set smtp_pass = "******"
  44. set move = no
  45. set ssl_force_tls = yes
  46. set ssl_starttls = yes
  47.  
  48. set editor='nano'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement