[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

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
howtos:network_services:postfix_dovecot_mysql:dovecot [2015/02/16 06:40 (UTC)] – intermediate save astrogeekhowtos:network_services:postfix_dovecot_mysql:dovecot [2015/02/16 09:48 (UTC)] – First complete version astrogeek
Line 1: Line 1:
  
 ===== Installing The Dovecot MDA ===== ===== Installing The Dovecot MDA =====
-<note important>This article is under construction and not complete! Please return later...</note> 
  
 Dovecot is a popular and secure mail delivery agent, or MDA, which can be configured to work alongside the postfix MTA. Dovecot is a popular and secure mail delivery agent, or MDA, which can be configured to work alongside the postfix MTA.
Line 65: Line 64:
 We will work from top to bottom of the copied file list to perform configuration. We will work from top to bottom of the copied file list to perform configuration.
  
-Open the file, /etc/dovecot.dovecot.conf and make the following changes:+Open the file, /etc/dovecot/dovecot.conf and make the following changes:
 <code> <code>
 vi /etc/dovecot/dovecot.conf vi /etc/dovecot/dovecot.conf
Line 165: Line 164:
 </code> </code>
  
-Next we set up the SSL configuration to use the certificates created earlier:+Next we set up the SSL configuration so it is mandatory and uses the certificates created earlier:
  
 <code> <code>
 vi /etc/dovecot/conf.d/10-ssl.conf vi /etc/dovecot/conf.d/10-ssl.conf
-... uncomment as necessary and make the following changes ...+ 
 +# Uncomment as necessary and make the following changes #
 ssl = required ssl = required
 ssl_cert = </etc/ssl/localcerts/dove.pem ssl_cert = </etc/ssl/localcerts/dove.pem
Line 179: Line 179:
 <code> <code>
 vi /etc/dovecot/conf.d/auth-sql.conf.ext vi /etc/dovecot/conf.d/auth-sql.conf.ext
-... find the "passdb" section and configure as follows ...+ 
 +# Find the "passdb" section and configure as follows #
 passdb { passdb {
     driver = sql     driver = sql
     args = /etc/dovecot/dovecot-sql.conf.ext     args = /etc/dovecot/dovecot-sql.conf.ext
 } }
-... find the "userdb" section and configure as follows ...+ 
 +# Find the "userdb" section and configure as follows #
 userdb { userdb {
       driver = static       driver = static
Line 191: Line 193:
 </code> </code>
  
-Now we want to further secure the installation by making all dovecot configutation files owned by vmail and accessible by the dovecot group, and restricting all others access.+Now we want to further secure the installation by making all dovecot configutation files owned by the non--privledged vmail user, and accessible by the dovecot group, with no access by others.
  
 <code> <code>
Line 197: Line 199:
 chmod -R o-rwx /etc/dovecot chmod -R o-rwx /etc/dovecot
 </code> </code>
 +
 [[howtos:network_services:postfix_dovecot_mysql|Return to main article page]] [[howtos:network_services:postfix_dovecot_mysql|Return to main article page]]
 {{tag>howtos dovecot postfix mysql}} {{tag>howtos dovecot postfix mysql}}
 howtos:network_services:postfix_dovecot_mysql:dovecot ()