Home arrow Testing arrow Testing SMTP with Authentication
Testing SMTP with Authentication PDF  
Digg Reddit Ma.gnolia Stumble Upon Facebook Twitter Google Yahoo! MyWeb Furl" BlinkList Technorati Mixx Bookmark

In order to test your SMTP Mail Server do the following steps (asuming that your server ip is 10.0.0.1 and your desktop station IP is 10.0.0.5):

telnet 10.0.0.1 25

HELO 10.0.0.5

AUTH LOGIN

# Now you must enter your username and password encoded into base64 format. To do that you can use the following perl inline command:

perl -MMIME::Base64 -e 'print encode_base64(" This email address is being protected from spam bots, you need Javascript enabled to view it ")'

MAIL FROM:< This email address is being protected from spam bots, you need Javascript enabled to view it >

RCPT TO: < This email address is being protected from spam bots, you need Javascript enabled to view it >

DATA

SUBJECT: test smtp

test
test
.

#The server will send you "250 message queued".
quit


 

 
Next >

Other BSD Systems

OpenBSD

Polls

Best BSD firewall?