Estou com um problema com o postfix
problema:
# 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
idéia?
postfix
ubuntu-14.04
flavio.troja
fonte
fonte
Respostas:
[RESOLVIDO] Isso corrigiu o problema para mim no Ubuntu 14.04:
fonte
Verifique a saída de
postconf -m
. Isso parecerá assim:Se na saída do postconf não houver
mysql
string, significa que o postfix é construído sem o suporte ao mysql. Para resolvê-lo, instale opostfix-mysql
pacote.fonte
Verifique se instalado:
dpkg -s postfix-mysql
se não instalar
sudo apt-get -y install postfix-mysql
Problema resolvido.
fonte