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

12

Eu tenho 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

ideia?

    
por flavio.troja 20.08.2014 / 18:09

3 respostas

14

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

sudo apt-get install postfix-mysql
    
por 20.08.2014 / 18:10
8
  1. Verifique a saída de postconf -m . Será 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 mysql string, isso significa que o postfix é construído sem suporte a mysql. Para resolvê-lo, instale postfix-mysql package.

por 03.09.2015 / 00:26
1

Verifique se está instalado: dpkg -s postfix-mysql

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

Problema resolvido.

    
por 15.03.2015 / 03:10