Guest User

Untitled

a guest
Nov 24th, 2017
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. [user@example ~]$ telnet localhost 25
  2. Trying 127.0.0.1...
  3. Connected to localhost.
  4. Escape character is '^]'.
  5.  
  6. <<< 220 example.com ESMTP Sendmail 8.14.4/8.14.4; Fri, 17 Jul 2015 20:29:26 +0200
  7.  
  8. helo localhost
  9.  
  10. <<< 250 example.com Hello localhost [127.0.0.1], pleased to meet you
  11.  
  12. MAIL FROM:me@localhost
  13.  
  14. <<< 250 2.1.0 me@localhost... Sender ok
  15.  
  16. RCPT TO:user@example.com
  17.  
  18. <<< 250 2.1.5 user@example.com... Recipient ok
  19.  
  20. RCPT TO:cc@example.com
  21.  
  22. <<< 250 2.1.5 cc@example.com... Recipient ok
  23.  
  24. RCPT TO:bcc@example.com
  25.  
  26. <<< 250 2.1.5 bcc@example.com... Recipient ok
  27. data
  28.  
  29. <<< 354 Enter mail, end with "." on a line by itself
  30.  
  31.  
  32. Subject: test
  33. From: me@example.com
  34. To: user@example.com
  35. Cc: cc@example.com
  36.  
  37. this is an email message.
  38. that has two lines.
  39. .
  40. <<< 250 2.0.0 t6HITQXA020072 Message accepted for delivery
  41. quit
Add Comment
Please, Sign In to add comment