[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_dovecot_mysql:dovecot [2019/02/14 14:02 (UTC)] – [Installing The Dovecot MDA] slackwarespanoles:howtos:network_services:postfix_dovecot_mysql:dovecot [2019/02/14 15:24 (UTC)] (actual) – [Fuentes] slackwarespanol
Línea 1: Línea 1:
-<note warning>En proceso de traducción. Victor</note> 
 ====== Instalar el Dovecot MDA ====== ====== Instalar el Dovecot MDA ======
 Esta página es complementaria al artículo principal: [[:es:howtos:network_services:postfix_dovecot_mysql | Creando un servidor de correo virtual con Postfix, Dovecot y MySQL]] Esta página es complementaria al artículo principal: [[:es:howtos:network_services:postfix_dovecot_mysql | Creando un servidor de correo virtual con Postfix, Dovecot y MySQL]]
Línea 36: Línea 35:
 <code>installpkg {path-to/}dovecot-2.2.13-x86_64-1_SBo.tgz</code> <code>installpkg {path-to/}dovecot-2.2.13-x86_64-1_SBo.tgz</code>
  
-====== Configuring The Dovecot MDA ======+====== Configurando el Dovecot MDA ======
  
-You should become familiar with the [[http://wiki2.dovecot.org/FrontPage|dovecot documentation]] in order to properly configure your installationYou will also find a local copy of the complete documentation installed with the package in /usr/doc/dovecot-2.2.13/wiki/ (adjust for you version number if necessary).+Debe familiarizarse con la [[http://wiki2.dovecot.org/FrontPage|dovecot documentación]] para configurar correctamente su instalaciónTambién encontrará una copia local de la documentación completa instalada con el paquete en /usr/doc/dovecot-2.2.13/wiki/ (ajuste su número de versión si es necesario).
  
-<note important>You //must// become familiar with the tools available to you in order to safely admin and maintain your mail serverTake the time necessary to //read the man pages// - man dovecot, man doveconf, man doveadm, //before// you start your mail server!</note>+<note important>¡Usted // debe // familiarizarse con las herramientas disponibles para poder administrar y mantener de manera segura su servidor de correoTómese el tiempo necesario para // leer las páginas man // - man dovecot, man doveconf, man doveadm, // antes de que // ¡inicie su servidor de correo!</note>
  
-The dovecot package will create a mostly empty configuration directory at /etc/dovecot.+El paquete dovecot creará un directorio de configuración casi vacío en / etc / dovecot.
  
 <code>cat /etc/dovecot/README <code>cat /etc/dovecot/README
Línea 61: Línea 60:
 </code> </code>
  
-We will work from top to bottom of the copied file list to perform configuration.+Trabajaremos de arriba a abajo de la lista de archivos copiados para realizar la configuración.
  
-Open the file, /etc/dovecot/dovecot.conf and make the following changes:+Abra el archivo, /etc/dovecot/dovecot.conf y realice los siguientes cambios:
 <code> <code>
 vi /etc/dovecot/dovecot.conf vi /etc/dovecot/dovecot.conf
Línea 76: Línea 75:
 </code> </code>
  
-Next, configure the database access parameters and password query for dovecot:+A continuación, configure los parámetros de acceso a la base de datos y la consulta de contraseña para dovecot:
  
 <code> <code>
Línea 87: Línea 86:
 </code> </code>
  
-Nextwe configure the authentication methods to be used by dovecot. We will restrict it to use only secure authentication by the settings here and in the included auth-sql.conf.ext fileexcluding other methods.+A continuaciónconfiguramos los métodos de autenticación para ser utilizados por dovecot. Lo restringiremos para usar solo la autenticación segura según la configuración aquí y en el archivo auth-sql.conf.ext incluidoexcluyendo otros métodos.
  
 <code> <code>
Línea 104: Línea 103:
 </code> </code>
  
-Set the filesystem path for virtual mailThe virtual user's mail boxes will be at /var/vmail/vhosts/DOMAIN/USER. Dovecot will perform the substitutions for %d and %n at runtime.+Establezca la ruta del sistema de archivos para el correo virtual. Los buzones de correo del usuario virtual estarán en / var / vmail / vhosts / DOMAIN / USER. Dovecot realizará las sustituciones para% d y% n en tiempo de ejecución.
  
 <code> <code>
Línea 113: Línea 112:
 </code> </code>
  
-Set the configuration for the dovecot master process:+Establecer la configuración para el proceso maestro de dovecot:
 <code> <code>
 vi /etc/dovecot/conf.d/10-master.conf vi /etc/dovecot/conf.d/10-master.conf
Línea 163: Línea 162:
 </code> </code>
  
-Next we set up the SSL configuration so it is mandatory and uses the certificates created earlier:+A continuación, configuramos la configuración SSL para que sea obligatoria y use los certificados creados anteriormente:
  
 <code> <code>
Línea 174: Línea 173:
 </code> </code>
  
-Finally, configure authentication and user data paths for dovecot access:+Finalmente, configure las rutas de autenticación y de datos de usuario para el acceso de dovecot:
  
 <code> <code>
Línea 192: Línea 191:
 </code> </code>
  
-Now we want to further secure the installation by making all dovecot configutation files owned by the non--privledged vmail userand accessible by the dovecot groupwith no access by others.+Ahora queremos asegurar aún más la instalación al hacer que todos los archivos de configuración de dovecot que son propiedad del usuario de vmail sin privilegiosy accesibles por el grupo de dovecot, sin acceso de otros.
  
 <code> <code>
Línea 199: Línea 198:
 </code> </code>
  
-[[howtos:network_services:postfix_dovecot_mysql|Return to main article page]] +[[howtos:network_services:postfix_dovecot_mysql|Volver a la página principal del artículo]] 
-====== Sources ====== +====== Fuentes ====== 
-  * Based primarily on [[http://wiki2.dovecot.org/|Dovecot documentation]] +  * Basado principalmente en[[http://wiki2.dovecot.org/|Dovecot documentation]] 
-  * Originally written by [[wiki:user:astrogeek | astrogeek]]+  * Escrito originalmente por [[wiki:user:astrogeek | astrogeek]] 
 +  * Traducido por:  [[wiki:user: slackwarespanol | Victor]]  2019/02/14 14:07 (UTC) 
 {{tag>howtos dovecot postfix mysql}} {{tag>howtos dovecot postfix mysql}}
 es:howtos:network_services:postfix_dovecot_mysql:dovecot ()