Postfix: error: tipo de diccionario no compatible: mysql


13

Tengo un problema con 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

¿idea?


pregunta casi duplicada para pcre: serverfault.com/q/972173/250204
ansioso

Respuestas:


15

[SOLUCIONADO] Esto solucionó el problema para mí en Ubuntu 14.04:

sudo apt-get install postfix-mysql

8
  1. Verifique la salida de postconf -m. Se verá así:

    root@ds94:/usr/local/etc/postfix # postconf -m
    btree
    cidr
    environ
    fail
    hash
    internal
    memcache
    mysql
    pcre
    proxy
    regexp
    socketmap
    static
    tcp
    texthash
    unix
    
  2. Si en la salida de postconf no hay mysqlcadena, significa que postfix se construye sin soporte de mysql. Para resolverlo, instale el postfix-mysqlpaquete.


1

Verificar si está instalado: dpkg -s postfix-mysql

si no instala sudo apt-get -y install postfix-mysql

Problema resuelto.


55
hecho curioso, lo tengo instalado y todavía ese error
John
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.