- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Sendmail error - mail loops back to me
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-02-2000 03:16 PM
тАО10-02-2000 03:16 PM
553 mail.xxxxxxx.com. config error: mail loops back to me (MX
>problem?)
>554
(Note that the x's replace actual server names and email address that are correct)
I have very little Linux experience, and I don't know sendmail very well. This server is delivering some of the mail correctly, but we are seeing these errors on a regular basis. Can anyone offer any suggestions?
Thanks in advance!
-Tim
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-02-2000 11:16 PM
тАО10-02-2000 11:16 PM
SolutionRun nslookup -query=mx and enter in the domain you are trying to send to.
You should get some output like this:
Server: nameserver.domain.com
Address: xxx.xxx.xxx.xxx
server1.domain.com preference = 50, mail exchanger = serverA.domain.com
server1.domain.com preference = 100, mail exchanger = serverB.domain.com
server1.domain.com preference = 110, mail exchanger = serverC.domain.com
This shows where mail for the domain you entered will be delivered. It does not mean that messages will terminate at these servers, it just means that these servers stand a better chance of knowing where to send your mail on. These entries are known as MX records (mail exchanger). The mail exchanger servers are tried in order of preference (lowest to highest) until the message can be delivered.
Check your MX records, it is possible that your DNS configuration is using your server as a mail exchanger and so is always trying to deliver outbound mail to it.
If this is not the case, check your sendmail.cf file for the DS macro. This is used to send all non-local mail to another machine for further delivery. It might be that this is set to point to your server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-03-2000 12:24 PM
тАО10-03-2000 12:24 PM
Re: Sendmail error - mail loops back to me
loops in the Helo command. The literal canonical name from the connecting host is
compared with the local canonical name (both systems have the exact same name)
a match will generate the error string you saw.
This might be normal under some circumstances. - Look for the F=k option
if F=k the check is skipped.
Happy hunting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-05-2000 02:25 PM
тАО10-05-2000 02:25 PM
Re: Sendmail error - mail loops back to me
It was a combination of DNS and MX record problems. I thank everyone for their help!
-Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2002 06:23 AM
тАО07-03-2002 06:23 AM
Re: Sendmail error - mail loops back to me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2003 04:42 PM
тАО04-29-2003 04:42 PM
Re: Sendmail error - mail loops back to me
Much obliged to you folks for making this information available. (Google brought me to this)