On Wed, Jun 17, 2015 at 04:27:18AM +0000, basteon wrote: > smtp_sasl_password_maps = hash:/etc/postfix/mailpasswd > > and create those files /etc/postfix/mailpasswd and /etc/postfix/mailpasswd.db > touch /etc/postfix/mailpasswd > touch /etc/postfix/mailpasswd.db
That's no way to create a Berkeley DB database, and the file permissions for this sensitive file should be 0600 if it is in use. Instead: # postmap hash:/etc/postfix/mailpasswd Or better yet: # postconf -e "smtp_sasl_password_maps =" don't configure a password table you're not using. -- Viktor.