Guest User

Untitled

a guest
Feb 15th, 2019
569
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. $ telnet smtp.example.com 587
  2. Trying 127.0.0.1...
  3. Connected to smtp.example.com.
  4. Escape character is '^]'.
  5. 220 smtp.example.com ESMTP Postfix (Debian/GNU)
  6. EHLO test
  7. 250-
  8. 250-PIPELINING
  9. 250-SIZE 10240000
  10. 250-ETRN
  11. 250-STARTTLS
  12. 250-ENHANCEDSTATUSCODES
  13. 250-8BITMIME
  14. 250 DSN
  15. QUIT
  16. 221 2.0.0 Bye
  17. Connection closed by foreign host.
  18.  
  19. set ssl_starttls=yes
  20. set ssl_force_tls=yes
  21.  
  22. set imap_user = "user@example.com"
  23. set imap_pass = "!HASHEDPASSWORD!"
  24. set folder = imap://mail.example.com/
  25. set spoolfile = imap://mail.example.com/INBOX
  26.  
  27. # SMTP user auth
  28. # # fill in the right user and pass based on your setup
  29. # # protocols: smtp for TLS (25/587), smtps for SSL (465)
  30. set smtp_url = "smtp://$imap_user@mail.example.com:587"
  31. set smtp_pass = "$imap_pass"
  32.  
  33. # Where to save copies of outgoing mail
  34. set record = '+Sent'
  35.  
  36. set from = "user@gmail.com"
  37. set realname = "user"
  38. set imap_user = "user@gmail.com"
  39. set imap_pass = "pwd"
  40. set folder = "imaps://imap.gmail.com:993"
  41. set spoolfile = "imaps://imap.gmail.com/INBOX"
  42. set postponed ="+[Gmail]/Drafts"
  43. set header_cache =~/.mutt/cache/headers
  44. set message_cachedir =~/.mutt/cache/bodies
  45. set certificate_file =~/.mutt/certificates
  46. set smtp_url = "smtps://user@gmail.com@smtp.gmail.com:465/"
  47. set smtp_pass = "pwd"
  48. set move = no
  49. set imap_keepalive = 900
  50.  
  51. set ssl_starttls = no
  52. set smtp_url = "smtp://user@example.com@mail.example.com:587/"
  53. set smtp_pass = "password"
  54.  
  55. set ssl_starttls = no # yes/no, but apparently yes is default.
  56. set ssl_force_tls = yes # yes/no
  57. set smtp_authenticators = "login" # set or not set
  58.  
  59. set smtp_url = "smtp[s]://..." # smtp or smtps
  60. set certificate_file = "~/.mutt/certificates" # some recommends creating the file first: mkdir ~/.mutt && touch ~/.mutt/certificates
  61.  
  62. set ssl_verify_host = no # yes/no
  63. set ssl_verify_dates = no # yes/no
Add Comment
Please, Sign In to add comment