last update: 19 Mar 1999

[home] [index] [contents] [previous] [next]

sendmail


nota: Necesita "m4" para compilar sendmail.

2.1 download
ftp://ftp.sendmail.org/pub/sendmail/sendmail.8.9.1.tar.gz

También, necesita los "patch"s:
ftp://ftp.kyoto.wide.ad.jp/sendmail/sendmail.8.9.1a.patch
ftp://ftp.kyoto.wide.ad.jp/sendmail/sendmail.8.9.1a.unofficial.patch

2.2 Install
Para instalar sendmail, hay que desempaquetar el software, a continuación nos ubicamos en el directorio /usr/local/sendmail-8.9.1/src, luego ejecutamos los siguientes comandos:
    % cd /usr/local
    % gzip -cd sendmail-8.9.1.tgz | tar xvf -
    % cd $Work/sendmail-8.9.1/src
    % patch < sendmail-8.9.1a.patch
    % patch < sendmail-8.9.1a.unoffical.patch

    % cd /usr/local/sendmail-8.9.1/src
    % sh Build

    % cd /usr/local/sendmail-8.9.1/
    % su root
    xxxxxx (passwd)
    % make install

2.3 Configuración
Utiliza "/etc/sendmail.cf" para configuración de sendmail.
Normalmente, utiliza "CF": Véase "CF".

2.4 Administración
Para levantar automáticamente el demonio de sendmail, hay que agregar las siguientes instrucciones, en el archivo /etc/rc.d/rc.M.
# Start the sendmail daemon:
if [ -x /usr/sbin/sendmail ]; then
  echo "Starting sendmail daemon (/usr/sbin/sendmail -bd -q 15m)..."
  /usr/sbin/sendmail -bd -q 15m
fi

Ejemplo de configuración de sendmail en: /etc/rc.d/rc.M



[home] [index] [contents] [previous] [next]