Does Solaris 10 sendmail support SMTP AUTH

authenticationsaslsendmail

Can anyone tell me if Solaris 10 now comes with a sendmail binary that supports SMTP AUTH ?
Search brings up many old post on how to complie SASL and Sendmail , but I'd rather use a built in, supported version if there is now one availble.

Edit

After looking at this , it seems it is not enabled.
Thanks for the replies.

Best Answer

The version of Sendmail on my Solaris 10 9/10 box is 8.14.4+Sun.

It has also been linked with SASL:

$ ldd /usr/sbin/sendmail|grep sasl
        libsasl.so.1 =>  /usr/lib/libsasl.so.1

In the stock sendmail.cf:

# SMTP AUTH flags
#O AuthOptions

So yes, it looks like it is supported but you'll need to enable it in the configuration.

UPDATE

As @AndyM points out in the comments, it looks like this is incorrect and in fact AUTH support is not compiled in to the native Solaris sendmail.

Related Topic