Postfix 3.1 不支持 mysql 类型

Postfix 3.1 不支持 mysql 类型

在 Ubuntu 16.04 上托管的新邮件服务器,应该是(postfix、dovecot、mysql),我安装了 postfix 和 mysql,如下所示:

apt install postfix postfix-mysql mysql-server mysql-client

配置 postfix(3.1)后,我尝试测试 postfix 和 mysql 连接并检索所有域/用户:

postmap -q mydomain.com mysql:/etc/postfix/mysql-virtual_domains.cf

我收到错误:

postmap: fatal: unsupported dictionary type: mysql

看来我的服务器由于某种原因不支持 mysql!

# postconf -m
btree
cidr
environ
fail
hash
inline
internal
memcache
nis
pipemap
proxy
randmap
regexp
socketmap
static
tcp
texthash
unionmap
unix

/etc/postfix# cat dynamicmaps.cf 
# dict-type so-name (pathname)  dict-function   mkmap-function
cdb postfix-cdb.so.1.0.1    dict_cdb_open   mkmap_cdb_open
ldap    postfix-ldap.so.1.0.1   dict_ldap_open
mysql   postfix-mysql.so.1.0.1  dict_mysql_open
pcre    postfix-pcre.so.1.0.1   dict_pcre_open
pgsql   postfix-pgsql.so.1.0.1  dict_pgsql_open
sqlite  postfix-sqlite.so.1.0.1 dict_sqlite_open

请帮助?

相关内容