InterviewSolution
| 1. |
When An Organization Stores Aliases On An Ldap Server, How You Will Configure Sendmail To Read Aliases From The Ldap Server? |
|
Answer» Use "SENDMAIL -bt -d0" command to check the sendmail compiler OPTIONS. If sendmail was not compiled with LDAP support, recompile and install sendmail. ADD an ALIAS FILE define, containing the string ldap to the sendmail configuration. # SET the LDAP cluster value define(`conf LDAP CLUSTER', `wrotethebook.com') # Tel sendmail that ALIASES are available via LDAP define(`ALIAS FILE', `ldap:') Use "sendmail -bt -d0" command to check the sendmail compiler options. If sendmail was not compiled with LDAP support, recompile and install sendmail. Add an ALIAS FILE define, containing the string ldap to the sendmail configuration. # Set the LDAP cluster value define(`conf LDAP CLUSTER', `wrotethebook.com') # Tel sendmail that aliases are available via LDAP define(`ALIAS FILE', `ldap:') |
|