Test SMTP Server menggunakan SWAKS
Setiap kita merubah konfigurasi server smtp, pasti yang kemudian dilakukan adalah mencoba-nya, pada umumnya yang dilakukan adalah test sederhana secara manual menggunakan telnet, akan tetapi SWAKS membuat test server smtp semakin mudah.
- Install SWAKS
# apt-get install swaks
- Contoh pengguna’an
# swaks –to zulfan_hakim@yahoo.com –from zulfan@zulfanruri.com
Hasilnya
=== Trying c.mx.mail.yahoo.com:25…
=== Connected to c.mx.mail.yahoo.com.
<- 220 mta309.mail.re4.yahoo.com ESMTP YSmtp service ready
-> EHLO mail.zulfanruri.com
<- 250-mta309.mail.re4.yahoo.com
<- 250-8BITMIME
<- 250-SIZE 31981568
<- 250 PIPELINING
-> MAIL FROM:<zulfan@zulfanruri.com>
<- 250 sender <zulfan@zulfanruri.com> ok
-> RCPT TO:<zulfan_hakim@yahoo.com>
<- 250 recipient <zulfan_hakim@yahoo.com> ok
-> DATA
<- 354 go ahead
-> Date: Wed, 08 Apr 2009 13:34:04 +0700
-> To: zulfan_hakim@yahoo.com
-> From: zulfan@zulfanruri.com
-> Subject: test Wed, 08 Apr 2009 13:34:04 +0700
-> X-Mailer: swaks v20061116.0 jetmore.org/john/code/#swaks
->
-> This is a test mailing
->
-> .
<- 250 ok dirdel
-> QUIT
<- 221 mta309.mail.re4.yahoo.com
=== Connection closed with remote host.
Untuk opsi lebih detail silahkan dilihat sendiri manual page-nya
.
# man swaks




