Reputation: 6189
syslog is consistently returning for a specific domain the following result:
relay=mail.domain.tld. [XX.XXX.XXX.XX], dsn=5.0.0, stat=Service unavailable
what is a possible cause of the service unavailability and how can this be resolved?
Upvotes: 1
Views: 2266
Reputation: 10903
As root send a test message with SMTP session tracking. It may provide more hints.
#!/bin/sh
[email protected]
[email protected]
/usr/sbin/sendmail -v -Ac -i -f$FROM -- $TO <<END
subject: test
to: $TO
from: $FROM
test
END
Upvotes: 2