Postfix: Fehler: Nicht unterstütztes Wörterbuch Typ: mysql

13

Ich habe ein Problem mit Postfix

Problem:

# 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

Idee?

flavio.troja
quelle
fast doppelte Frage für pcre: serverfault.com/q/972173/250204
ANX

Antworten:

15

[Gelöst] Dies behebt das Problem für mich in Ubuntu 14.04:

sudo apt-get install postfix-mysql
flavio.troja
quelle
8
  1. Überprüfen Sie die Ausgabe von postconf -m. Es wird so aussehen:

    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. Wenn in der Ausgabe von postconf kein mysqlString enthalten ist, bedeutet dies, dass postfix ohne Unterstützung für mysql erstellt wird . Um es zu beheben, installieren Sie das postfix-mysqlPaket.

George Gaál
quelle
1

Überprüfen Sie, ob installiert: dpkg -s postfix-mysql

wenn nicht installieren sudo apt-get -y install postfix-mysql

Problem gelöst.

Schläger
quelle
5
komische Tatsache, ich habe es installiert und immer noch diesen Fehler
John