What does this mean?

Fahrvergnuugen

I am the law!
In my consol I get this message everytime Mail.app checks my email [I'm using localhost for sendmail, but my email account is a pop3 on another server]

Jul 13 17:02:47 localhost inetd[28714]: cannot execute /usr/local/sbin/identd: No such file or directory

sendmail sends mail fine through Mail.app but my PHP scripts cannot send mail using the mail() function. PHP doesn't report any error. Where might I start looking for what happened to those messages?

Any help would be greatly appreciated.
 
As far as,

Jul 13 17:02:47 localhost inetd[28714]: cannot execute /usr/local/sbin/identd: No such file or directory

you have the line which begins with 'ident' uncommented in /etc/inetd.conf; some mail servers, when you connect to them, will make an ident request back to your machine to get your username. If you don't need identd, comment it out in /etc/inetd.conf and HUP inetd.

Can't help with the PHP/mail stuff, though.
 
Back
Top