Guest User

Untitled

a guest
Dec 16th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $ telnet mydomain.com 25
  2. Trying <IP address removed>...
  3. telnet: connect to address <IP address removed>: Operation timed out
  4. telnet: Unable to connect to remote host
  5.  
  6. $ telnet localhost 25
  7. Trying ::1...
  8. Trying 127.0.0.1...
  9. Connected to localhost.
  10. Escape character is '^]'.
  11. 220 hobnob Python SMTP proxy version 0.2
  12.  
  13. from smtplib import SMTP
  14. conn = SMTP('mydomain.com')
  15.  
  16. dig +short mydomain.com MX
Add Comment
Please, Sign In to add comment