### Default paths and settings ###
# SENDMAIL_SYSCONF_PATH="/etc/mail"
# SENDMAIL_MC_CONF="/etc/mail/sendmail.mc"
# SENDMAIL_ACCESS_CONF="/etc/mail/access"
# SENDMAIL_DOMAIN_TABLE_CONF="/etc/mail/domaintable"
# SENDMAIL_LOCAL_HOST_NAMES_CONF="/etc/mail/local-host-names"
# SENDMAIL_MAILER_TABLE_CONF="/etc/mail/mailertable"
# SENDMAIL_TRUSTED_USERS_CONF="/etc/mail/trustedusers"
# SENDMAIL_VIRT_USER_TABLE_CONF="/etc/mail/virtusertable"
# SENDMAIL_ALIASES_CONF="/etc/aliases"
# SENDMAIL_MAIL_LOG="/var/log/maillog"
# SECURE_LOG="/var/log/secure"
# SENDMAIL_BINARY="/usr/sbin/sendmail"
# NEWALIASES_BINARY="newaliases"
# SYSINIT_START_CMD="chkconfig sendmail on"
# SYSINIT_STOP_CMD="chkconfig sendmail off"
# MAKE_BINARY="make"
# PROC_PATH="/proc"


### Install for Debian/Ubuntu ###
# ./configure --prefix=/usr --sysconfdir=/etc \
# --localstatedir=/var --sbindir=/usr/sbin \
# SYSINIT_START_CMD="update-rc.d -f sendmail defaults" \
# SYSINIT_STOP_CMD="update-rc.d -f sendmail remove" &&
# make && make install

### Install for Redhat/Fedora ###
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --sbindir=/usr/sbin \
SYSINIT_START_CMD="chkconfig sendmail on" \
SYSINIT_STOP_CMD="chkconfig sendmail off" &&
make && make install
