Guest User

Untitled

a guest
Aug 20th, 2018
875
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. set no bouncemail
  2. poll outlook.office365.com with protocol imap
  3. port 993
  4. auth password
  5. user user@domain.com password password
  6. ssl
  7. sslfingerprint "<Correct Fingerprint - not sure if I should copy this here>"
  8. sslcertpath /Users/myuser/.certs
  9. keep
  10. no rewrite
  11. mda "/usr/local/bin/procmail -f %F -d %T";
  12.  
  13. VERBOSE=yes
  14. :0
  15. ! myusername@gmail.com
  16.  
  17. procmail: Executing "/usr/sbin/sendmail,-oi,myusername@gmail.com"
  18.  
  19. $ sudo port install ssmtp
  20. ...
  21.  
  22. root=FIXME@gmail.com
  23. mailhub=smtp.gmail.com:587
  24. rewriteDomain=gmail.com
  25. hostname=localhost
  26. UseTLS=Yes
  27. UseSTARTTLS=Yes
  28. AuthUser=FIXME@gmail.com
  29. AuthPass=Hunter2
  30. FromLineOverride=no
  31.  
  32. ...
  33. mda "/opt/local/sbin/ssmtp FIXME"
  34.  
  35. mydomain_fallback = localhost
  36. mail_owner = _postfix
  37. setgid_group = _postdrop
  38. relayhost = smtp.gmail.com:587
  39. smtp_sasl_auth_enable = yes
  40. smtp_sasl_password_maps=hash:/etc/postfix/sasl_passwd
  41. smtp_sasl_security_options = noanonymous
  42. smtp_use_tls = yes
  43. #smtp_tls_security_level = encrypt
  44. #tls_random_source = dev:/dev/urandom
  45. smtp_sasl_mechanism_filter = login
  46. smtp_sasl_mechanism_filter = login
  47.  
  48. smtp.gmail.com:587 username@gmail.com:password
  49.  
  50. date | mail -s test test@testdomain.com
Add Comment
Please, Sign In to add comment