Archive for the email category

Telnet your email server

Share on TwitterSubmit to StumbleUponDigg This
Very often it is necessary to test that your SMTP server is working. The easiest way to do this is with the telnet command. This lets you talk directly to the email server in its own SMTP protocol script language. Here's how...
telnet server name or IP address 25
HELO aaaa
mail from: <tom@fromdomain.com>
rcpt to: <fred@todomain.com>
data
Enter your message text
.
quit
Along the way you should see feedback from the server to each command entered See below Sponsored Links

e.g.
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
220 mailserver.local ESMTP Exim 4.43 Tue, 12 May 2009 10:31:00 +0100
helo aaaa
250 mailserver.local Hello mailserver.local [127.0.0.1]
mail from: <tom@fromdomain.com>
250 OK
rcpt to: <fred@todomain.com>
250 Accepted
data
354 Enter message, ending with "." on a line by itself
A message for myself.
.
250 OK id=1M3oKj-0006Sn-9u
quit
221 mailserver.local closing connection
Connection closed by foreign host.
Share on TwitterSubmit to StumbleUponDigg This

PostCast Server

Share on TwitterSubmit to StumbleUponDigg This
Share on TwitterSubmit to StumbleUponDigg This

Email server software

Share on TwitterSubmit to StumbleUponDigg This
Zimbra Collaboration Suite (ZCS) Open Source Edition. When I first attempted to install it, things got sticky. The main issue for me was that it needs a DNS server present which needs to point to itself (internal IP address) for all domains you add to your Zimbra system. When I eventually figured out how to install and configure BIND on my email server, everything started to flow. Zimbra does complain here and there but, after your third or fourth install attempt you will find it works with very little extra effort. Go ahead and try it. Once you figure out the requirements, I promise you'll be impressed.
Share on TwitterSubmit to StumbleUponDigg This