InterviewSolution
Saved Bookmarks
| 1. |
What Does /etc/mail/access File Contains? |
|
Answer» The access database ("/etc/mail/access") is a list of IP addresses and domainnames of allowable CONNECTIONS. FEATURE(`access_db',`HASH -T -o /etc/mail/access.db')DNL and cat /etc/mail/access localhost.localdomain RELAY localhost RELAY 127.0.0.1 RELAY 192.168.0 RELAY test.com RELAY The access database ("/etc/mail/access") is a list of IP addresses and domainnames of allowable connections. FEATURE(`access_db',`hash -T -o /etc/mail/access.db')dnl and cat /etc/mail/access localhost.localdomain RELAY localhost RELAY 127.0.0.1 RELAY 192.168.0 RELAY test.com RELAY |
|