Sendmail
The following is the process I used to configure sendmail for Virtual Hosts on my
Qube 2. I tried to accurately capture the streamlined process but there may be typos
and other nuances for your specific setup. I would be happy to implement any corrections
and or additions to this description.
Reference sendmail.org
vi /etc/sendmail.cw
Add the domain names for which you will accept mail.
vi /etc/virtusertable
Add any specific virtual user mail routing and catch all lines. For example,
slr@caymangroup.com
|
slr
|
@caymangrou.com
|
error:nouser Unknown user
|
Then create the hash table for this file:
makemap hash /etc/virtusertable < /etc/virtusertable
Restart sendmail:
/etc/rc.d/init.d/sendmail stop
/etc/rc.d/init.d/sendmail start
|