Link to home
Start Free TrialLog in
Avatar of btmtech
btmtech

asked on

Cannot Send Emails Within Our Network

We have a simple Windows Server 2003 Domain with 5 users.  We are behind a SonicWall firewall and a WorkGroup Switch.  We use a third-party ISP for basic POP3 email within Outlook Express.

The issue is that we cannot send emails to other users within the network but we can send out and receive from the outside.  The sender receives no message back and the receiver receives nothing.  Users cannot even send/receive emails to themselves.

Any suggestions?
Avatar of craig1122
craig1122

Do you have the reply email address specified within the accounts setup? If so try to remove that email address from there.
I am making a big assumption here, so if the answer to the "IF question on the next line is "no" then disregard.  Otherwise:

IF your internal WIn 2003 domain name is the same as your "public" domain name, you probably need to modify DNS on the internal server.

Add a host (A) and MX record to DNS on the 2003 domain controller (or DNS server) that says:

A record for host name "mail.yourdomain.com" is at IP address "IP_of_the_ISP_mail_server_hosting_your_domain"

MX Record that says MX for "yourdomain.com" is "mail.yourdomain.com"

The IP address you want to use for the A record of "mail.yourdomain.com" can be found by doing (from outside your network):

CMD
NSLOOKUP
SET TYPE=MX
yourdomain.com

(this should return the name of your primary "public" MX (mail exchanger).  Don't close NSLOOKUP yet, but now:

SET TYPE=A
[MAIL.YOURDOMAIN.COM] (or whatever result was returned on the MX query above).
This will tell you the public address to use for the A record you create in DNS on your server in the early step of my post.

Mike
Avatar of btmtech

ASKER

The issue resulted from the ISP giving us an ip address that was blacklisted!!  Thank You for Your Help!!
ASKER CERTIFIED SOLUTION
Avatar of modulo
modulo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial