Amazon LinuxでPostfix/PostgreSQLを用いたPostfixAdmin構築
Amazon LinuxでPostfixを用いたPostfixAdmin構築ログ
インストール パッチ適用
Amazon LinuxのPostfix RPMはPostgreSQLを組み込まれてないので
src-rpmでビルドする。
停止
$ sudo /etc/init.d/postfix stop削除
$ sudo rpm -e postfixSRPM取得
※amazon linuxのrpm取得方法はその都度確認
$ get_reference_source -d -p postfixspecファイル編集
$ cd /usr/src/srpm/debug
$ sudo rpm -ivh postfix-2.6.6-2.14.amzn1.src.rpm
$ su -
# cd /root/rpmbuild/SPECS
# cp -p postfix.spec postfix.spec.
date +%Y%m%d
# vim postfix.spec
# diff postfix.spec postfix.spec.
date +%Y%m%d
3,4c3,4
< %{?!MYSQL: %define MYSQL 0}
< %{?!PGSQL: %define PGSQL 1}
---
> %{?!MYSQL: %define MYSQL 1}
> %{?!PGSQL: %define PGSQL 0} `
# yum install rpm-build
# yum install dovecot dovecot-pgsql php httpd postgresql-server postgresql-libs postgresql-devel openldap-devel cyrus-sasl-devel pcre-devel db4-devel zlib-devel openssl-devel
- パッチ適用
# cd ../SOURCES/
# wget http://patches.netspiders.net/postfix/postfix-2.6.6-linux3.patch
# cd ../SPECS/
# wget http://patches.netspiders.net/postfix/postfix-2.6.6-linux3.spec.patch
# patch -p0 < postfix-2.6.6-linux3.spec.patch
ビルド
# rpmbuild -ba postfix.spec
インストール
# cd /root/rpmbuild/RPMS/x86_64
# rpm -ivh postfix-2.6.6-2.14.amzn1.x86_64.rpm
pgsqlモジュール確認
# postconf -m
あとはmysqlの連携と変わらず。
備考
- PostfixAdmin使用時のmain.cf例
# Postfix admin settings
local_transport = local
virtual_transport = virtual
virtual_mailbox_base = /home/mailuser
virtual_alias_maps = pgsql:/etc/postfix/pgsql_virtual_alias_maps.cf
virtual_alias_domains = $virtual_alias_maps
virtual_mailbox_domains = pgsql:/etc/postfix/pgsql_virtual_domains_maps.cf
virtual_mailbox_maps = pgsql:/etc/postfix/pgsql_virtual_mailbox_maps.cf
virtual_minimum_uid = 5000
virtual_uid_maps = static:5000
virtual_gid_maps = static:5000
Author And Source
この問題について(Amazon LinuxでPostfix/PostgreSQLを用いたPostfixAdmin構築), 我々は、より多くの情報をここで見つけました https://qiita.com/launcher_test/items/942c2efc5b1619676a54著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .