Debian 上缺少 dict_pcre.so

Debian 上缺少 dict_pcre.so

我像平常一样使用 安装了 postfix apt-get install postfix,但出于某种原因,它没有包含dict_pcre.so在安装中。我是否忽略了什么,或者我如何以及在哪里获取这个缺失的包以与我的 postfix 一起安装?

# cat /proc/version
Linux version 3.2.0-4-amd64 ([email protected]) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.63-2+deb7u1

# postconf -m
btree
cidr
environ
fail
hash
internal
memcache
nis
proxy
regexp
sdbm
sqlite
static
tcp
texthash
unix

答案1

PCRE 似乎不是 Debian 维护者默认包含的。您必须通过

apt-get install postfix-pcre

看:Debian -- wheezy 中的 postfix-pcre 软件包详细信息


wheezy 中 postfix-pcre 软件包的文件清单

File list of package postfix-pcre in wheezy of architecture amd64

/usr/lib/postfix/dict_pcre.so
/usr/share/doc/postfix-pcre/README.Debian
/usr/share/doc/postfix-pcre/changelog.Debian.gz
/usr/share/doc/postfix-pcre/changelog.gz
/usr/share/doc/postfix-pcre/copyright

相关内容