Postfix: erreur: type de dictionnaire non pris en charge: mysql

13

J'ai un problème avec postfix

problème:

# 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ée?

flavio.troja
la source
question presque en double pour pcre: serverfault.com/q/972173/250204
anx

Réponses:

15

[RESOLU] Cela a résolu le problème pour moi dans Ubuntu 14.04:

sudo apt-get install postfix-mysql
flavio.troja
la source
8
  1. Vérifiez la sortie de postconf -m. Il ressemblera à ceci:

    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 sortie de postconf il n'y a pas de mysqlchaîne, cela signifie que postfix est construit sans support mysql. Pour le résoudre, installez le postfix-mysqlpackage.

George Gaál
la source
1

Vérifiez s'il est installé: dpkg -s postfix-mysql

sinon installer sudo apt-get -y install postfix-mysql

Problème résolu.

batteur
la source
5
fait drôle, je l'ai installé et toujours cette erreur
John