[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Diferencias

Muestra las diferencias entre dos versiones de la página.

Enlace a la vista de comparación

Ambos lados, revisión anteriorRevisión previa
Próxima revisión
Revisión previa
es:howtos:network_services:postfix_with_cyrus [2019/02/16 16:25 (UTC)] – [SSL / TLS Postfix and Cyrus] pedro.herreroes:howtos:network_services:postfix_with_cyrus [2019/02/16 16:38 (UTC)] (actual) – Finished. Comments and corrections welcome pedro.herrero
Línea 1: Línea 1:
-<note important>Site under translation, please wait (pedro.herrero)</note> 
- 
- 
 ====== Creación de un servidor de correo Slackware ====== ====== Creación de un servidor de correo Slackware ======
  
-<del>This article shows how to make an Slackware machine your personal Mail Server. This howto is for Slackware 64 13.37, but with few changes you can adapt it to the newest member of Slackware familly Slackware 14. +Este artículo muestra cómo hacer de una máquina Slackware su servidor de correo personal. Este HOWTO es para Slackware 64 13.37, pero con pocos cambios puedes adaptarlo al miembro más nuevo de la familia Slackware 14.
- +
-Before we begin I must say that you need a normal installation of Slackware, without any special packages. The packages we will need to make the Mail Server we will manually download and install from Slackbuilds.org. I preffer the Cyrus SASL authentication method and Cyrus IMAP for remote login, insted of other alternatives like qpopper or dovecot.  +
- +
-Let's get started then , we will need to install Cyrus-SASL, Postfix, Cyurs-IMAP and then configure them all to use Certificates for encrypting the mail packages that traverse the Internet. +
-</del> +
- +
-Este artículo muestra cómo hacer de una máquina Slackware su servidor de correo personal. Este cómo es para Slackware 64 13.37, pero con pocos cambios puedes adaptarlo al más nuevo miembro de la familia Slackware 14.+
  
 Antes de empezar debo decir que se necesita una instalación normal de Slackware, sin ningún paquete especial. Los paquetes que necesitaremos para crear el servidor de correo los descargaremos e instalaremos manualmente desde Slackbuilds.org. Prefiero el método de autenticación Cyrus SASL y Cyrus IMAP para el inicio de sesión remoto, en lugar de otras alternativas como qpopper o dovecot.  Antes de empezar debo decir que se necesita una instalación normal de Slackware, sin ningún paquete especial. Los paquetes que necesitaremos para crear el servidor de correo los descargaremos e instalaremos manualmente desde Slackbuilds.org. Prefiero el método de autenticación Cyrus SASL y Cyrus IMAP para el inicio de sesión remoto, en lugar de otras alternativas como qpopper o dovecot. 
  
-Comencemos entonces, necesitaremos instalar Cyrus-SASL, Postfix, Cyurs-IMAP y luego configurarlos todos para que usen Certificados para encriptar los paquetes de correo que atraviesan Internet.+Comencemos entonces, necesitaremos instalar Cyrus-SASL, Postfix, Cyurs-IMAP y luego configurarlos todos para que usen certificados para encriptar los paquetes de correo que atraviesan Internet.
  
  
Línea 69: Línea 59:
   # installpkg /tmp/postfix-2.8.3-x86_64-1_SBo.tgz    # installpkg /tmp/postfix-2.8.3-x86_64-1_SBo.tgz 
  
-<del>Before we continue with installation of IMAP server we need to assure that Postfix is working and we can authenticate with sasl. Let's make some basic Postfix configuration and some basic SASL configurationI will be explaining plain auth because later on we will use it togheter with SASL to authenticate.</del>+Antes de continuar con la instalación del servidor IMAP necesitamos asegurarnos de que Postfix funciona y que podemos identificarnos con sasl. Vamos a hacer una configuración básica de Postfix y una configuración básica de SASL. Explicaré la identificación simple porque más tarde la usaremos junto con SASL para identificarnos.
  
-Antes de continuar con la instalación del servidor IMAP necesitamos asegurarnos de que Postfix funciona y que podemos identificarnos con sasl. Vamos a hacer una configuración básica de Postfix y una configuración básica de SASL. Estaré explicando la identificación simple porque más tarde la usaremos junto con SASL para identificarnos. +En primer lugar tenemos que hacer nuestros alias y decirle a Postfix que utilice los mapas de alias de /etc/postfix/aliases, así que:
- +
-<del>First of all we need to make our aliases and tell Postfix to use aliases maps from /etc/postfix/aliases, so :</del> +
- +
-En primer lugar tenemos que hacer nuestros alias y decirle a Postfix que utilice los mapas de alias de /etc/postfix/aliases, así que... :+
  
   # joe /etc/postfix/main.cf   # joe /etc/postfix/main.cf
      
-Edita estas líneas y haz que tengan el siguiente aspecto:+Edite estas líneas y haga que tengan el siguiente aspecto:
  
   alias_maps = hash:/etc/postfix/aliases   alias_maps = hash:/etc/postfix/aliases
Línea 234: Línea 220:
   # echo tls_key_file: /var/imap/server.pem >> /etc/imapd.conf    # echo tls_key_file: /var/imap/server.pem >> /etc/imapd.conf 
      
-====== Adding daemons to rc.local ======+====== Agregar demonios a rc.local ======
      
-Now the last step is to add all daemons to rc.local so they can start when machine bootsSo open /etc/rc.d/rc.local and add these lines +Ahora el último paso es añadir todos los demonios a rc.local para que puedan iniciarse cuando la máquina arranqueAsí que abra /etc/rc.d/rc.local y añada estas líneas 
-  # Starting saslauthd daemon+  # Iniciando el demonio saslauthd
   if [ ! -r /var/state/saslauthd/saslauthd.pid ]; then   if [ ! -r /var/state/saslauthd/saslauthd.pid ]; then
       echo "Starting SASL authentication daemon:  /usr/sbin/saslauthd -a shadow"       echo "Starting SASL authentication daemon:  /usr/sbin/saslauthd -a shadow"
Línea 243: Línea 229:
   fi   fi
  
-  # Starting IMAP daemon+  # Iniciando el demonio IMAP
   if [ -x /usr/libexec/cyrus/master ]; then   if [ -x /usr/libexec/cyrus/master ]; then
       echo "Starting Cyrus IMAP daemon:  /usr/libexec/cyrus/master"       echo "Starting Cyrus IMAP daemon:  /usr/libexec/cyrus/master"
Línea 249: Línea 235:
   fi   fi
  
-  # Starting POSTFIX daemon+  # Iniciando el demonio POSTFIX
   /etc/rc.d/rc.postfix start   /etc/rc.d/rc.postfix start
            
Línea 256: Línea 242:
  
  
-====== Sources ======+====== Fuentes ======
   Postfix The Definitive Guide, Kyle D. Dent, O'Reilly   Postfix The Definitive Guide, Kyle D. Dent, O'Reilly
   Managing IMAP, Dianna Mullet & Kevin Mullet, O'Reilly   Managing IMAP, Dianna Mullet & Kevin Mullet, O'Reilly
-  Official Postfix Documentation, [[http://www.postfix.org/documentation.html]]+  La Documentación Oficial de Postfix, [[http://www.postfix.org/documentation.html]]
 {{tag>howtos author_badirca}} {{tag>howtos author_badirca}}
 +
 +Traducido por  --- //[[wiki:user:pedro.herrero|Pedro Herrero García]] 2019/02/16 16:31 (UTC)//
 es:howtos:network_services:postfix_with_cyrus ()