Postfix: error: tipo de dicionário não suportado: mysql


13

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?


pergunta quase duplicada para pcre: serverfault.com/q/972173/250204
ans

Respostas:


15

[RESOLVIDO] Isso corrigiu o problema para mim no Ubuntu 14.04:

sudo apt-get install postfix-mysql

8
  1. Verifique a saída de postconf -m. Isso parecerá assim:

    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. Se na saída do postconf não houver mysqlstring, significa que o postfix é construído sem o suporte ao mysql. Para resolvê-lo, instale o postfix-mysqlpacote.


1

Verifique se instalado: dpkg -s postfix-mysql

se não instalar sudo apt-get -y install postfix-mysql

Problema resolvido.


5
fato engraçado, eu o instalei e ainda assim esse erro #
John
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.