Jerome
Jerome

Reputation: 6189

Sending mail service unavailable status

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

Answers (1)

AnFi
AnFi

Reputation: 10903

sendmail (by sendmail.org) - getting outgoing SMTP transcript

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

Related Questions