5

I am getting alot of the following messages from an ISP when sending out emails. Is there any way to get more information from these ? Users are reporting that they are not receiving any emails?

Jul 5 17:02:50 smtp sendmail[11239]: r6592of7011232: to=, delay=00:00:00, xdelay=00:00:00, mailer=esmtp, pri=168781, relay=mx12.example.com.com. [123.123.123.132], dsn=5.0.0, stat=Service unavailable

Is it possible to start running debug mode for sendmail?

Diden

AnFi
  • 6,103
  • 1
  • 14
  • 27
Diden
  • 129
  • 3
  • 12
  • 2
    The way to get more information is to contact that ISP. In theory, the address `postmaster@example.com` should get an email to the person in charge of email systems, but there's the problem of theory and practice again... – Jenny D Jul 05 '13 at 09:12

1 Answers1

7

Sendmail: Sending outgoing test message in verbose/debug mode

As root you may send a test message in verbose mode.
You should get full transcript of SMTP session to the remote SMTP server.

(echo: subject: test; echo) | /usr/sbin/sendmail -v -Am -i user@example.net

You may add additional debug/tracking command line options:
-d8.20 - tracking DNS queuries
-d60.5 - tracking maps (databases) queries

AnFi
  • 6,103
  • 1
  • 14
  • 27