InterviewSolution
| 1. |
How To Configure Sendmail To Accept Mail For Local Delivery That Is Addressed To Other Hosts? |
|
Answer» Create a /etc/MAIL/local-host-names file. Put into that file the hostnames and domain names for which sendmail should accept mail for local delivery. Enter the names with one hostname or domain name PER line. And also make sure that Sendmail configuration file should contain "use_cw_file" OPTION. dnl Load CLASS $=w with other names for the local host FEATURE(`use_cw_file') Create a /etc/mail/local-host-names file. Put into that file the hostnames and domain names for which sendmail should accept mail for local delivery. Enter the names with one hostname or domain name per line. And also make sure that Sendmail configuration file should contain "use_cw_file" option. dnl Load class $=w with other names for the local host FEATURE(`use_cw_file') |
|