I get the following errors /var/log/mail.err
Code: Select all
postfix/smtpd[2898]: fatal: no SASL authentication mechanisms
As far I can tell the mail systems works and email are delivered.
Code: Select all
postfix/smtpd[2898]: fatal: no SASL authentication mechanisms
Code: Select all
ls -l /var/spool/postfix/private/auth
Code: Select all
socket listen {
master {
# Master socket provides access to userdb information. It's typically
# used to give Dovecot's local delivery agent access to userdb so it
# can find mailbox locations.
path = /var/run/dovecot/auth-master
mode = 0600
# Default user/group is the one who started dovecot-auth (root)
user = email
group = email
}
client {
# The client socket is generally safe to export to everyone. Typical use
# is to export it to your SMTP server so it can do SMTP AUTH lookups
# using it.
#path = /var/run/dovecot/auth-client
path = /var/spool/postfix/private/auth
mode = 0660
user = postfix
group = postfix
}
}