Ich habe ein Problem mit Postfix
Problem:
# tail -f /var/log/mail.err
Aug 20 17:57:50 myserver postfix/smtpd[8243]: error: unsupported dictionary type: mysql
Aug 20 17:57:50 myserver postfix/smtpd[8243]: error: unsupported dictionary type: mysql
Aug 20 17:58:05 myserver postfix/smtpd[8244]: error: unsupported dictionary type: mysql
Aug 20 17:58:05 myserver postfix/smtpd[8244]: error: unsupported dictionary type: mysql
Aug 20 18:00:38 myserver postfix/smtpd[8277]: error: unsupported dictionary type: mysql
Aug 20 18:00:38 myserver postfix/smtpd[8277]: error: unsupported dictionary type: mysql
Aug 20 18:03:32 myserver postfix/smtpd[8320]: error: unsupported dictionary type: mysql
Aug 20 18:03:32 myserver postfix/smtpd[8320]: error: unsupported dictionary type: mysql
Aug 20 18:03:33 myserver postfix/trivial-rewrite[8322]: error: unsupported dictionary type: mysql
Aug 20 18:03:33 myserver postfix/trivial-rewrite[8322]: error: unsupported dictionary type: mysql
Idee?
postfix
ubuntu-14.04
flavio.troja
quelle
quelle
Antworten:
[Gelöst] Dies behebt das Problem für mich in Ubuntu 14.04:
quelle
Überprüfen Sie die Ausgabe von
postconf -m
. Es wird so aussehen:Wenn in der Ausgabe von postconf kein
mysql
String enthalten ist, bedeutet dies, dass postfix ohne Unterstützung für mysql erstellt wird . Um es zu beheben, installieren Sie daspostfix-mysql
Paket.quelle
Überprüfen Sie, ob installiert:
dpkg -s postfix-mysql
wenn nicht installieren
sudo apt-get -y install postfix-mysql
Problem gelöst.
quelle