带有 Pgsql 支持的 Postfix

带有 Pgsql 支持的 Postfix

我正在尝试寻找一个带有 postfix 的替代 repo,它在 Cenots 6 上支持 pgsql。

我以前使用过 CentAlt,但是由于它现在似乎已经不行了,所以我正在尝试寻找替代方案。

如果可能的话,我宁愿不从源代码编译 postfix。

我在网上和这里的其他帖子中查找过,但找不到有效的答案。

是否有人知道带有 postfix/w pgsql 支持的 repo 或者包含 postfix-pgsql 的 repo?

答案1

Centos7 在基础存储库的 postfix 中不包含 PgSQl 支持,您必须使用 centosplus 存储库

postconf -c /etc/postfix -m | grep sql
mysql

以 root 身份

yum install yum-priorities
vim /etc/yum.repos.d/CentOS-Base.repo
  Add the following to sections base and update
    exclude=postfix-*
    priority=1 
  Modify the following in section centosplus
    priority=2
    enabled=1
  Save and exit

yum erase postfix
yum install postfix
postconf -c /etc/postfix -m | grep sql
  mysql
  pgsql

答案2

CentOS 目前似乎已经包含 PGSQL 支持,至少在版本 6 中是这样:

mail ~ # postconf -c /etc/postfix -m | grep sql
mysql
pgsql
mail ~ # rpm -qa | grep postfix
postfix-2.11.0-0.el6.x86_64
mail ~ # cat /etc/redhat-release 
CentOS release 6.5 (Final)

相关内容