[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
howtos:network_services:postfix_dovecot_mysql:postfix [2015/02/16 06:59 (UTC)] astrogeekhowtos:network_services:postfix_dovecot_mysql:postfix [2018/10/08 02:14 (UTC)] (current) – [Configuring The Postfix MTA] astrogeek
Line 1: Line 1:
-===== Installing The Postfix MTA =====+====== Installing The Postfix MTA ======
  
-<note important>This article is under construction and not complete! Please return later...</note>+This page is supplemental to main article: [[howtos:network_services:postfix_dovecot_mysql|Creating a Virtual Mail Server with Postfix, Dovecot and MySQL]]
  
 Postfix is a popular and secure mail transport agent, or MTA. Postfix is a popular and secure mail transport agent, or MTA.
Line 41: Line 41:
 Copy the package file to the target platform if necessary and install: Copy the package file to the target platform if necessary and install:
 <code>installpkg {path-to/}postfix-2.11.3-x86_64-1_SBo.tgz</code> <code>installpkg {path-to/}postfix-2.11.3-x86_64-1_SBo.tgz</code>
-===== Configuring The Postfix MTA =====+====== Configuring The Postfix MTA =====
 You must become familiar with the [[http://www.postfix.org/documentation.html|postfix documentation]] in order to properly configure and administer your mail server. Additionally, a complete set of online documentation for your version is installed from the package to /usr/doc/postfix-2.11.3/html/, learn what is there. You must become familiar with the [[http://www.postfix.org/documentation.html|postfix documentation]] in order to properly configure and administer your mail server. Additionally, a complete set of online documentation for your version is installed from the package to /usr/doc/postfix-2.11.3/html/, learn what is there.
  
Line 87: Line 88:
 relay_domains = relay_domains =
  
 +# We have no local users, so no local notifications #
 biff = no biff = no
-append_dot_mydomain = no 
 </code> </code>
  
Line 99: Line 100:
 # SSL certificates will be created at these locations when we configure dovecot # # SSL certificates will be created at these locations when we configure dovecot #
 smtpd_tls_cert_file = /etc/ssl/localcerts/dove.pem smtpd_tls_cert_file = /etc/ssl/localcerts/dove.pem
-smtpd_tls_key_file = /etc/ssl/localcerts/dove.key+smtpd_tls_key_file = /etc/ssl/private/dove.key
  
 #Accept only secure smtp connections #Accept only secure smtp connections
Line 144: Line 145:
 user= mailuser user= mailuser
 password = {your mailuser password} password = {your mailuser password}
-host = localhost+hosts = localhost
 dbname = mailserver dbname = mailserver
 query = SELECT 1 FROM virtual_domains WHERE name='%s' query = SELECT 1 FROM virtual_domains WHERE name='%s'
Line 154: Line 155:
  
 This will return true (1) if the domain is found, NULL if not found, and an error message if the query or connection is not correctly configured. This will return true (1) if the domain is found, NULL if not found, and an error message if the query or connection is not correctly configured.
 +
 +Also note that other database connection options are available, for example if you are connecting to a remote database server, or multiple servers. See the mysql_table man page from the postfix package for complete connect parameter information.
  
 Next, we must tell postfix how to identify valid virtual mail box users. This query must also only return true if the mail box exists in the database. Next, we must tell postfix how to identify valid virtual mail box users. This query must also only return true if the mail box exists in the database.
Line 163: Line 166:
 user= mailuser user= mailuser
 password = {your mailuser password} password = {your mailuser password}
-host = localhost+hosts = localhost
 dbname = mailserver dbname = mailserver
 query = SELECT 1 FROM virtual_users WHERE email='%s' query = SELECT 1 FROM virtual_users WHERE email='%s'
Line 180: Line 183:
 user= mailuser user= mailuser
 password = {your mailuser password} password = {your mailuser password}
-host = localhost+hosts = localhost
 dbname = mailserver dbname = mailserver
 query = SELECT destination FROM virtual_aliases WHERE source='%s' query = SELECT destination FROM virtual_aliases WHERE source='%s'
Line 199: Line 202:
 </code> </code>
  
-After creating the aliases file, you must use the postmap utility to build the local aliases database...+After creating the aliases file, you must use the newaliases utility to build the local aliases database...
  
-<code>postmap /etc/aliases</code>+<code>newaliases</code>
  
 This will create the file /etc/aliases.db in format useable by postfix. This will create the file /etc/aliases.db in format useable by postfix.
Line 208: Line 211:
  
 [[howtos:network_services:postfix_dovecot_mysql|Return to main article page]] [[howtos:network_services:postfix_dovecot_mysql|Return to main article page]]
 +
 +====== Sources ======
 +  * Based primarily on [[http://www.postfix.org/documentation.html|Postfix documentation]]
 +  * Originally written by [[wiki:user:astrogeek | astrogeek]]
 {{tag>howtos postfix dovecot mysql}} {{tag>howtos postfix dovecot mysql}}
 howtos:network_services:postfix_dovecot_mysql:postfix ()